From 1229e8c6f130c62c42900f424a772d4e9c5e8ef5 Mon Sep 17 00:00:00 2001 From: An-Cheng Huang Date: Wed, 24 Oct 2007 10:01:04 -0700 Subject: add 'sudo' for 'system' and 'service/ssh' configuration commands. --- templates/system/domain-name/node.def | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'templates/system/domain-name') 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\" " -- cgit v1.2.3