diff options
Diffstat (limited to 'templates/service/ssh/allow-root')
-rw-r--r-- | templates/service/ssh/allow-root/node.def | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/templates/service/ssh/allow-root/node.def b/templates/service/ssh/allow-root/node.def index 058735ed..9aa98826 100644 --- a/templates/service/ssh/allow-root/node.def +++ b/templates/service/ssh/allow-root/node.def @@ -1,6 +1,7 @@ -type: bool +type: txt default: false help: Enable/disable root login over ssh +syntax:expression: $VAR(@) in "true", "false" ; "must be true or false" update: if [ \"$VAR(@)\" == \"true\" ]; then sudo ed - /etc/ssh/sshd_config <<-"EOF" /^PermitRootLogin/s/no/yes/ @@ -12,7 +13,4 @@ update: if [ \"$VAR(@)\" == \"true\" ]; then wq EOF fi -comp_help: possible completions: - true Allow root to login over ssh - false Don't allow root to login over ssh(default) - + /bin/true |