diff options
Diffstat (limited to 'init-sh/init.sh')
-rwxr-xr-x | init-sh/init.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init-sh/init.sh b/init-sh/init.sh index 4e89cb9..fa8e9b3 100755 --- a/init-sh/init.sh +++ b/init-sh/init.sh @@ -2,10 +2,15 @@ if [ -z $1 ]; then echo "Usage : $0 [0-5]" + echo "Usage : $0 \"custom\"" exit 1 fi +if [ "${1}" == "custom" ]; then + /etc/security/msec/init-sh/custom.sh +fi + if [ -f /etc/security/msec/init-sh/level$1.sh ]; then /etc/security/msec/init-sh/level$1.sh if [ -f /etc/security/msec/init-sh/perm.$1 ]; then |