initscripts/var/init/deps.stop.mk

57 lines
1.4 KiB
Makefile
Raw Normal View History

2011-04-26 12:26:24 +02:00
# GNU Makefile listing dependencies between services when services are
# stopped
#
# rc[1-5].d dependencies
acpid : sendsignals
alsa :
consolekit :
2011-04-26 12:26:24 +02:00
cpufreqd : sendsignals
crond :
cups :
drbd : heartbeat
gpm :
haldaemon : wicd
heartbeat :
httpd :
2011-04-26 12:26:24 +02:00
iptables : sendsignals
lisa :
lisa4 :
localnet : network NetworkManager
logrotate :
mountfs : sendsignals network NetworkManager swap create_final_log
mrtg :
mysql :
named :
nessusd :
network : netfs vmware heartbeat drbd
NetworkManager : netfs vmware heartbeat drbd
netfs : samba
nscd :
ntpd :
openldap :
postgresql :
random :
samba :
snort :
2011-04-26 12:26:24 +02:00
splash :
sshd :
2011-04-26 12:26:24 +02:00
swap : sendsignals
udev : mountfs
virtualbox :
vmware :
wine :
xinetd :
wicd :
2011-04-26 12:26:24 +02:00
# services to be started last
sysklogd : $(filter-out sysklogd udev mountfs sendsignals create_final_log swap reboot halt,$(ALL_RUNLEVEL))
sendsignals : $(filter-out sendsignals acpid iptables localnet network udev mountfs network cpufreqd swap reboot halt,$(ALL_RUNLEVEL))
2011-04-26 12:26:24 +02:00
reboot : $(filter-out reboot,$(ALL_RUNLEVEL))
halt : $(filter-out halt,$(ALL_RUNLEVEL))
local :
create_final_log : sendsignals swap
@$(LS) -Srt $(TMP_DIR)/$(TMPFILE_PREFIX).$(JOB).* | $(XARGS) $(CAT) > $(FINAL_OUTPUT_FILE) 2>/dev/null
@$(RM) -f $(TMP_DIR)/$(TMPFILE_PREFIX).$(JOB).* 2>/dev/null
# EOF