Fix too many pack error.
This commit is contained in:
parent
a83949130c
commit
abf630188a
@ -669,13 +669,13 @@ def init_canonical_ping_file(update=False):
|
|||||||
|
|
||||||
|
|
||||||
def install_legacy_ha_files(update=False):
|
def install_legacy_ha_files(update=False):
|
||||||
for f, p in LEGACY_FILES_MAP:
|
for f, p in LEGACY_FILES_MAP.iteritems():
|
||||||
copy_file(LEGACY_HA_TEMPLATE_FILES, p['path'],
|
copy_file(LEGACY_HA_TEMPLATE_FILES, p['path'],
|
||||||
p['permission'], update=update)
|
p['permission'], update=update)
|
||||||
|
|
||||||
|
|
||||||
def remove_legacy_ha_files():
|
def remove_legacy_ha_files():
|
||||||
for f, p in LEGACY_FILES_MAP:
|
for f, p in LEGACY_FILES_MAP.iteritems():
|
||||||
remove_file(p['path'], f)
|
remove_file(p['path'], f)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user