Skip to content

Commit 59fdad9

Browse files
authored
Update backend_acl.py to specify ACL table name (#17553) (#17666)
1 parent 8a76e8f commit 59fdad9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

files/image_config/backend_acl/backend_acl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def load_backend_acl(device_type):
7878
if os.path.isfile(BACKEND_ACL_TEMPLATE_FILE):
7979
run_command(['sudo', SONIC_CFGGEN_PATH, '-d', '-t', '{},{}'.format(BACKEND_ACL_TEMPLATE_FILE, BACKEND_ACL_FILE)])
8080
if os.path.isfile(BACKEND_ACL_FILE):
81-
run_command(['acl-loader', 'update', 'incremental', BACKEND_ACL_FILE])
81+
run_command(['acl-loader', 'update', 'full', BACKEND_ACL_FILE, '--table_name', 'DATAACL'])
8282
else:
8383
log_info("Skipping backend acl load - conditions not met")
8484

0 commit comments

Comments
 (0)