diff options
author | An-Cheng Huang <ancheng@sydney.vyatta.com> | 2007-10-24 10:01:04 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@sydney.vyatta.com> | 2007-10-24 10:01:04 -0700 |
commit | 1229e8c6f130c62c42900f424a772d4e9c5e8ef5 (patch) | |
tree | a89f7b29d4a7e62c803f3b0306922777681f319a /templates/system/domain-name/node.def | |
parent | b1fcb904eab1425d349fd7ab8d65b39c1bfb2e3f (diff) | |
download | vyatta-cfg-system-1229e8c6f130c62c42900f424a772d4e9c5e8ef5.tar.gz vyatta-cfg-system-1229e8c6f130c62c42900f424a772d4e9c5e8ef5.zip |
add 'sudo' for 'system' and 'service/ssh' configuration commands.
Diffstat (limited to 'templates/system/domain-name/node.def')
-rw-r--r-- | templates/system/domain-name/node.def | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/templates/system/domain-name/node.def b/templates/system/domain-name/node.def index 8f9d4579..111061cd 100644 --- a/templates/system/domain-name/node.def +++ b/templates/system/domain-name/node.def @@ -1,15 +1,11 @@ type: txt help: "Configure system domain name" syntax: pattern $(@) "^[-a-zA-Z0-9.]{0,63}$" ; "invalid domain name $(@)" -create: "sh -c \"if [ x$(@) == x ]; then exit 0; fi && \ -touch /etc/resolv.conf && \ -sed -i '/domain/d' /etc/resolv.conf && \ -echo \\\"domain\t $(@)\\\" >> /etc/resolv.conf\" " # also add localhost line into /etc/hosts (see host-name template)? -update: "sh -c \"if [ x$(@) == x ]; then exit 0; fi && \ +update: "sudo sh -c \"if [ x$(@) == x ]; then exit 0; fi && \ touch /etc/resolv.conf && \ sed -i '/domain/d' /etc/resolv.conf && \ echo \\\"domain\t $(@)\\\" >> /etc/resolv.conf\" " # also update localhost line in /etc/hosts (see host-name template)? -delete: "sh -c \"touch /etc/resolv.conf && \ +delete: "sudo sh -c \"touch /etc/resolv.conf && \ sed -i '/domain\\\\t $(@)/d' /etc/resolv.conf\" " |