grml-setservices: support NFS
[grml-scripts.git] / usr_sbin / grml-setservices
1 #!/bin/sh
2 # Filename:      grml-setservices
3 # Purpose:       interface for basic configuration of system startup
4 # Authors:       grml-team (grml.org), (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: Mit Jul 18 02:16:12 CEST 2007 [mika]
8 ################################################################################
9
10 PN="$(basename $0)"
11 TMP=$(mktemp)
12 DIALOG=dialog
13 CONFFILE='/etc/runlevel.conf'
14
15 . /etc/grml/script-functions
16 . /etc/grml/lsb-functions
17
18 check4root || exit 100
19
20 bailout(){
21   rm -f "$TMP"
22   exit 0
23 }
24
25 trap bailout 1 2 3 15
26
27 is_value_set(){
28  [ -n "$1" ] || return 2
29  [ -r "$TMP" ] || return 3
30  grep -q "$1" $TMP && return 0 || return 1
31 }
32
33 INFO="Which services would you like to have enabled on your system?
34
35 Notice: this script will adjust your ${CONFFILE}, the
36 file which provides the startup configuration for your
37 system. You can edit the file manually as well.
38
39 If you do not know what to choose just take the defaults
40 or choose cancel.
41 "
42
43 # enable checks only if the according init script is present
44 [ -r /etc/init.d/lvm2 ]   && LVM='lvm!logical volume management!on'
45 [ -r /etc/init.d/mdadm ]  && SRAID='mdadm!software-raid via mdadm!on'
46 [ -r /etc/init.d/dmraid ] && MRAID='dmraid!software-raid via dmraid!off'
47 [ -r /etc/init.d/dbus -o -r /etc/init.d/dbus-1 ] && DBUS='dbus!hal/dbus (important for KDE e.g.)!off'
48 [ -r /etc/init.d/nfs-common ] && NFS='nfs!Network File System (client setup)!off'
49
50 ## adjust setup
51 # logic:
52 # if is_value_set
53 #    remove_from_runlevel.conf
54 #    set_up_defaults_as_intented_in_/var/lib/dpkg/info/$PACKAGE.postinst
55 # else
56 #    remove_from_runlevel.conf
57 #    set_up_only_for_stop_to_prevent_reactivation_via_maintainer_scripts_on_upgrade
58 set_values(){
59   if [ -n "$LVM" ] ; then
60      if is_value_set "lvm" ; then
61         update-rc.d -f lvm2 remove >/dev/null 2>&1
62         update-rc.d lvm2 start 26 S . start 50 0 6 .
63      else
64         update-rc.d -f lvm2 remove >/dev/null 2>&1
65         update-rc.d lvm2 stop 20 0 1 6 . >/dev/null 2>&1
66      fi
67   fi
68
69   if [ -n "$SRAID" ] ; then
70      if is_value_set "mdadm"  ; then
71         update-rc.d -f mdadm remove >/dev/null 2>&1
72         update-rc.d mdadm-raid start 25 S . start 50 0 6 . >/dev/null 2>&1
73         update-rc.d mdadm defaults 25 >/dev/null 2>&1
74      else
75         update-rc.d -f mdadm remove >/dev/null 2>&1
76         update-rc.d mdadm stop 20 0 1 6 . >/dev/null 2>&1
77         update-rc.d -f mdadm-raid remove >/dev/null 2>&1
78         update-rc.d mdadm-raid stop 20 0 1 6 . >/dev/null 2>&1
79      fi
80   fi
81
82   if [ -n "$MRAID" ] ; then
83      if is_value_set "dmraid" ; then
84         update-rc.d -f dmraid remove >/dev/null 2>&1
85         update-rc.d dmraid start 04 S . start 51 0 6 . >/dev/null
86      else
87         update-rc.d -f dmraid remove >/dev/null 2>&1
88         update-rc.d dmraid stop 20 0 1 6 . >/dev/null 2>&1
89      fi
90   fi
91
92   if [ -n "$DBUS" ] ; then
93      if is_value_set "dbus" ; then
94         update-rc.d -f dbus remove >/dev/null 2>&1
95         update-rc.d dbus defaults >/dev/null 2>&1
96      else
97         update-rc.d -f dbus remove >/dev/null 2>&1
98         update-rc.d dbus stop 20 0 1 6 . >/dev/null 2>&1
99      fi
100   fi
101
102   if [ -n "$NFS" ] ; then
103      if is_value_set "nfs" ; then
104         update-rc.d -f nfs-common remove >/dev/null 2>&1
105         update-rc.d nfs-common start 20 2 3 4 5 . stop 20 0 1 6 . start 44 S . >/dev/null 2>&1
106      else
107         update-rc.d -f nfs-common remove >/dev/null 2>&1
108         update-rc.d nfs-common stop 20 0 1 6 . >/dev/null 2>&1
109      fi
110   fi
111 }
112
113 # the interface itself
114 oifs="$IFS"
115 IFS='!'
116 $DIALOG --title "$PN" --checklist "$INFO" 30 65 8 $LVM $SRAID $MRAID $DBUS $NFS 2>$TMP
117
118 retval="$?"
119 case $retval in
120     (0)   set_values ;;
121     (1)   echo "Cancel pressed." ; exit 1 ;;
122     (255) echo "ESC pressed."    ; exit 1 ;;
123 esac
124
125 retval=$?
126 case $retval in
127     (0)
128           $DIALOG --title "$PN" --stdout --msgbox "Adjusting system runlevel configuration via $CONFFILE was successful." 0 0
129           esyslog user.notice "$PN" "Writing language settings ($LANGUAGE) to $CONFFILE was successful."
130           ;;
131     *)
132           $DIALOG --title "$PN" --stdout --msgbox "Error writing settings to ${CONFFILE}." 0 0
133           esyslog user.notice "$PN" "Error writing settings to ${CONFFILE}."
134           ;;
135 esac
136
137 rm -f $TMP
138 IFS="$oifs"
139
140 ## END OF FILE #################################################################
141 # vim: ai tw=80 expandtab