Skip to content

Commit 76d8ff0

Browse files
authored
Update backend_acl.py to specify ACL table name (sonic-net#17553) (sonic-net#17673)
1 parent b72a740 commit 76d8ff0

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)