Browse Source

Added method update ACL

Paolo Galli 4 years ago
parent
commit
18e5cee883
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lcmlog-server-utils

+ 2 - 1
lcmlog-server-utils

@@ -149,10 +149,11 @@ if (( ${#1} != 2 )); then
 fi
 
 # Select method from the option
-while getopts ":ilh" o; do
+while getopts ":iluh" o; do
 	case $o in
 		i) method_init;;
 		l) method_authlookup;;
+		u) method_updateACL;;
 		h) method_help;;
 		\?) usage && exit 1;;
 	esac