]> Pileus Git - mkinit/blob - services.mk
Update kexec rules
[mkinit] / services.mk
1 MKSHELL=/opt/plan9/bin/rc
2
3 # Example
4 #test-start:VQPservice -u: foo-start
5 #       echo starting test
6 #       service -U $target
7 #
8 #test-stop:VQPservice -d: /
9 #       echo stopping test
10 #       service -D $target
11
12 # Core commands
13 # -------------
14 # Reboot commands
15 poweroff:V: halt 
16         $P poweroff -ndf
17 reboot:V: halt
18         $P reboot -ndf
19 kexec:V: halt
20         $P kexec -l /usr/src/linux/arch/x86/boot/bzImage --reuse-cmdline
21         $P kexec -e
22
23 # Initial setup/shutdown for mkinit
24 boot:VEPservice -u: /
25         echo Starting init
26         $P mount -o remount,rw /
27         # mount proc here to make bootchart happier
28         $P mount -t proc proc /proc
29         service -F
30         service -U $target
31
32 # Kill all process, then remount and sync
33 halt:QVE: utmp-stop hwclock-stop alsa-stop
34         echo TERMinating all processes
35         $P pkill -15 --inverse -g0 >/dev/null >[2=1]
36         for (i in 1 2 3 4 5)
37                 { $P pgrep -vg0 && $P sleep 1 }
38         echo KILLing all processes
39         $P pkill  -9 --inverse -g0 >/dev/null >[2=1]
40         for (i in 1 2 3)
41                 { $P pgrep -vg0 && $P sleep 1 }
42         service -F
43         echo Remounting read-only
44         $P mount -o remount,ro /
45         $P sync
46
47 # Bare
48 # ----
49 # Listener for /dev/initctl, for shutdown(8)
50 initctl-start:VPservice -u: boot
51         fifo=/dev/initctl
52         if (! test -e $fifo)
53                 $P mkfifo $fifo
54         { exec $P initctld $fifo |
55           while(line=`{line})
56                 $P mkinit $line >/dev/console >[2=1] 
57         } &
58         service -U $target
59 initctl-stop_cmd=fuser -k /dev/initctl
60
61 # Proc, mtab, fstab
62 mounts-start:VPservice -u: boot
63         $P mdadm -A /dev/md4 /dev/sd[abc]4
64         $P mount -a
65         service -U $target
66
67 # Mount devtmpfs and shm/pts subfolders
68 devtmpfs-start:VEPservice -u: boot
69         $P mount /dev
70         $P mkdir /dev/shm
71         $P mkdir /dev/pts
72         service -U $target
73
74 # Start mdev as initial/daemon
75 mdev-start:VEPservice -u: mounts-start
76         $P echo /sbin/mdev > /proc/sys/kernel/hotplug
77         $P mdev -s
78         service -U $target
79
80 # Start udev and trigger events
81 udev-start:VEPservice -u:  mounts-start
82         $P udevd --daemon
83         $P udevadm trigger
84         $P udevadm settle '--timeout=10'
85         service -U $target
86 udev-stop_cmd=pkill udevd
87
88 # Load kernel modules
89 modules-start:VEPservice -u: boot
90         $P modprobe uvesafb
91         $P modprobe evdev
92         service -U $target
93
94 # Clean out /tmp and /var/run directories
95 fsclean-start:VPservice -u: boot
96         dirs=(/var/run /tmp)
97         $P mkdir -p /.old
98         $P mv $dirs /.old || true
99         $P mkdir -p $dirs
100         $P chmod 1777 /tmp
101         $P install -m 1777 -d /var/run/screen # Fuck you Screen
102         $P exec rm -rf /.old &
103         service -U $target
104
105 # Spawn gettys for tty[23456]
106 getty-start:VEPservice -u: hostname-start utmp-start
107         $P respawn setsid agetty 38400 tty2 linux
108         $P respawn setsid agetty 38400 tty3 linux
109         $P respawn setsid agetty 38400 tty4 linux
110         $P respawn setsid agetty 38400 tty5 linux
111         $P respawn setsid agetty 38400 tty6 linux
112         service -U $target
113 getty-stop_cmd=fuser -k /dev/tty2 /dev/tty3 /dev/tty4 /dev/tty5 /dev/tty6
114
115 # Spawn qingys for tty[7]
116 qingy-start:VEPservice -u: hostname-start utmp-start modules-start
117         $P respawn setsid /sbin/qingy-DirectFB tty7 &
118         $P chvt 7
119         service -U $target
120 qingy-stop_cmd=fuser -k /dev/tty7
121
122 # Login records
123 utmp-start:VPservice -u: fsclean-start
124         for (i in /var/run/utmp /var/log/wtmp) {
125                 $P eval 'echo -n > $i'
126                 $P chgrp utmp $i
127                 $P chmod 0664 $i
128         }
129         service -U $target
130 utmp-stop_cmd=halt -w
131
132 # CPU freq
133 cpufreq-start:VPservice -u: mounts-start
134         $P cpufreq-set -g ondemand
135         service -U $target
136
137 # Localhost
138 localhost-start_cmd=ifconfig lo 127.0.0.1
139 localhost-stop_cmd=ifconfig lo down
140
141 # Set hostname
142 hostname-start_cmd=hostname
143
144 # Kernel parameters
145 sysctl-start:VPservice -u: mounts-start
146         $P sysctl -p
147         $P chmod a+w /sys/class/leds/smc::kbd_backlight/brightness
148         $P chmod a+w /sys/class/backlight/gmux_backlight/brightness
149         service -U $target
150
151
152 # System
153 # -------
154 at-start_cmd=atd
155 at-stop_cmd=pkill atd
156
157 cron-start:VPservice -u: localhost-start fsclean-start
158         $P cron
159         service -U $target
160 cron-stop_cmd=pkill cron
161
162 hddtemp-start_cmd=hddtemp -d
163 hddtemp-stop_cmd=pkill hddtemp
164
165 hwclock-start_cmd=hwclock --hctosys --utc
166 hwclock-stop_cmd=hwclock --systohc --utc
167
168 mdadm-start_cmd=mdadm --monitor --scan --daemonize
169 mdadm-stop_cmd=pkill mdadm
170
171 smartd-start_cmd=smartd
172 smartd-stop_cmd=pkill smartd
173
174 sshd-start_cmd=/usr/sbin/sshd
175 sshd-stop_cmd=pkill sshd
176
177 swap-start_cmd=swapon -a
178 swap-stop_cmd=swapoff -a
179
180 syslog-start:VPservice -u: mounts-start
181         $P syslog-ng
182         service -U $target
183 syslog-stop_cmd=pkill syslog
184
185
186 # Desktop
187 # -------
188 alsa-start_cmd=alsactl restore
189 alsa-stop_cmd=alsactl store
190
191 cups-start_cmd=cupsd
192 cups-stop_cmd=pkill cupsd
193
194 dbus-start:VPservice -u: fsclean-start localhost-start
195         $P install -m 1777 -d /var/run/dbus
196         $P /usr/bin/dbus-daemon --system
197         service -U $target
198 dbus-stop_cmd=pkill dbus-daemon
199
200 gpm-start_cmd=gpm -m /dev/input/mice -t ps2
201 gpm-stop_cmd=pkill gpm
202
203 gpsd-start_cmd=gpsd tcp://localhost:2222
204 gpsd-stop_cmd=pkill gpsd
205
206 keymap-start_cmd=loadkeys -u us-cc
207
208 polipo-start:VPservice -u: localhost-start
209         $P polipo
210         service -U $target
211 polipo-stop_cmd=pkill polipo
212
213
214 # Server
215 # ------
216 apache2-start:VPservice -u: fsclean-start
217         $P install -o apache -g apache -d /var/run/session
218         $P apache2 $(apache2-opts)
219         service -U $target
220 apache2-stop_cmd=pkill apache2
221
222 #bitlbee-start_cmd=sudo -u bitlbee bitlbeed /usr/sbin/bitlbee
223 bitlbee-start_cmd=bitlbee -D -u bitlbee
224 bitlbee-stop_cmd=pkill bitlbee
225
226 cups-start_cmd=cupsd
227 cups-stop_cmd=pkill cupsd
228
229 denyhosts-start_cmd=denyhosts.py --daemon
230 denyhosts-stop_cmd=pkill denyhosts.py
231
232 courier-start:VPservice -u: fsclean-start
233         $P install -o mail -g mail -d /var/run/courier
234         $P authdaemond       start
235         $P courier           start
236         $P courierfilter     start
237         $P courier-imapd-ssl start
238         service -U $target
239 courier-stop_cmd=pkill '(courier|authdaemon)'
240
241 dioc-start:VPservice -u: munged-start
242         $P mount -n /mnt/c
243         $P mount -n /mnt/c/mnt/x
244         service -U $target
245 dioc-stop:EVPservice -d:
246         $P umount /mnt/c/mnt/x
247         $P umount /mnt/c
248         service -D $target
249
250 diod-start:VPservice -u: munged-start
251         $P diod --export-all
252         service -U $target
253 diod-stop_cmd=pkill diod
254
255 dovecot-start_cmd=dovecot
256 dovecot-stop_cmd=pkill dovecot
257
258 eth0-start_cmd=dhcpcd eth0
259 eth0-stop_cmd=dhcpcd eth0 -k
260
261 exim-start_cmd=exim -bd -q5m
262 exim-stop_cmd=pkill exim
263
264 gitd-start:VPservice -u: boot
265         $P exec /usr/libexec/git-core/git-daemon \
266                 '--syslog' \
267                 '--export-all' \
268                 '--user-path=git' \
269                 '--interpolated-path=/etc/git/%H%D' \
270                 '--listen=0.0.0.0' \
271                 '--user=nobody' \
272                 '--group=nobody' &
273         service -U $target
274 gitd-stop_cmd=pkill git-daemon
275
276 jabberd-start_cmd=sudo -u jabber -g jabber jabberd -b
277 jabberd-stop_cmd=pkill --uid jabber
278
279 mailman-start_cmd=sudo -u mailman -g mailman \
280         /usr/lib64/mailman/bin/mailmanctl -s start
281 mailman-stop_cmd=sudo -u mailman -g mailman \
282         /usr/lib64/mailman/bin/mailmanctl stop
283
284 munged-start:VPservice -u: localhost-start mounts-start
285         $P install -o munge -g munge -d /var/run/munge
286         $P sudo -u munge -g munge munged
287         service -U $target
288 munged-stop_cmd=pkill munged
289
290 mysql-start:VPservice -u: fsclean-start
291         $P install -o mysql -g mysql -d /var/run/mysqld
292         $P exec mysqld &
293         service -U $target
294 mysql-stop_cmd=pkill mysqld
295
296 ntpd-start_cmd=ntpd
297 ntpd-stop_cmd=pkill ntpd
298
299 privoxy-start_cmd=privoxy --user privoxy.privoxy /etc/privoxy/config
300 privoxy-stop_cmd=pkill privoxy
301
302 rngd-start_cmd=rngd -b -s64 -t60
303 rngd-stop_cmd=pkill rngd
304
305 spamd-start_cmd=spamd -u spamd -d
306 spamd-stop_cmd=pkill spamd
307
308 tftpd-start_cmd=in.tftpd -s -l /img/boot
309 tftpd-stop_cmd=
310
311 tor-start:VPservice -u: boot
312         $P exec tor &
313         service -U $target
314 tor-stop_cmd=pkill tor
315
316 wlan0-start:VPservice -u: wpa-start
317         $P dhcpcd wlan0
318         service -U $target
319 wlan0-stop_cmd=dhcpcd wlan0 -k
320
321 wpa-start:VPservice -u: mdev-start
322         $P modprobe b43
323         $P exec wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf &
324         service -U $target
325 wpa-stop_cmd=pkill wpa
326
327 # Library 
328 # -------
329 %-start:QVPservice -u: boot
330         if (~ $#($stem^-start_cmd) 0)
331                 echo No such service $stem && exit 0
332         $P $($stem^-start_cmd) $($stem^-opts)
333         service -U $target
334
335 %-stop:QVPservice -d: /
336         if (~ $#($stem^-stop_cmd) 0)
337                 echo No such service $stem
338         if not
339                 $P $($stem^-stop_cmd)
340         service -D $target
341
342 %-zap:QVPservice -d: /
343         service -D $target
344
345 %-status:QV:
346         service -q $target