summaryrefslogtreecommitdiff
path: root/templates/system/domain-name/node.def
blob: 8f9d4579850496b496e08d2a0fcf2e9657068cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 && \
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 && \
sed -i '/domain\\\\t $(@)/d' /etc/resolv.conf\" "