grml-hostname: do not execute hostname command itself
[grml-scripts.git] / usr_sbin / grml-hostname
1 #!/bin/sh
2 # Filename:      grml-hostname
3 # Purpose:       simple frontend to set hostname
4 # Authors:       (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 # Latest change: Son Dez 17 16:23:34 CET 2006 [mika]
8 ################################################################################
9
10 if [ $UID != 0 ] ; then
11    echo Error: become root before starting $0 >& 2
12    exit 100
13 fi
14
15 PN='grml-hostname'
16 TMP=$(mktemp)
17 OLDHOSTNAME="$(hostname)"
18
19 if [ -x /usr/bin/random-hostname ] ; then
20    HOSTNAME="$(/usr/bin/random-hostname)"
21 else
22    HOSTNAME="$(hostname)"
23 fi
24
25 bailout() {
26   rm -f $TMP
27   exit 1
28 }
29 trap bailout 1 2 3 15
30
31 # running inside grml2hd? Don't warn because of hostname + X
32 [ -n "$GRML2HD" ] || MSG='\n\nNotice: setting a different hostname while running X is *not* recommend!'
33
34 HOSTNAME="$(dialog --stdout --title "${PN}" --extra-button --extra-label "Propose hostname" \
35 --inputbox "Set hostname (/etc/hostname, /etc/hosts and /etc/postfix/main.cf will be adjusted)\
36 \n\nTip: press 'Propose hostname' for another proposal${MSG}" 14 70 $HOSTNAME)"
37 retval=$?
38
39 case $retval in
40   0)
41      echo "$HOSTNAME" > /etc/hostname
42      sed -i "s/^127.0.0.1[ \t]*$OLDHOSTNAME[ \t]*localhost/127.0.0.1       $HOSTNAME localhost/" /etc/hosts
43      sed -i "s/^::1[ \t]*ip6-localhost ip6-loopback[ \t]*$OLDHOSTNAME/::1     ip6-localhost ip6-loopback $HOSTNAME/" /etc/hosts
44      POSTFIX=''
45      if [ -r /etc/postfix/main.cf ] ; then
46        sed -i "s/^myhostname = .*/myhostname = $HOSTNAME/" /etc/postfix/main.cf && POSTFIX='
47 Configuration of myhostname in /etc/postfix/main.cf has been adjusted as well. Do not forget to restart postfix if necessary.'
48      fi
49      dialog --stdout --title "${PN}" --msgbox "Setting hostname to $HOSTNAME was successful.$POSTFIX" 0 0
50      ;;
51   1)
52      echo "Cancel pressed."
53      ;;
54   3)
55      $0 ;;
56   255)
57      echo "ESC pressed."
58      ;;
59 esac
60
61 rm -f $TMP 2>/dev/null
62
63 ## END OF FILE #################################################################