]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/initscripts
initscript: sort by startup
[people/pmueller/ipfire-2.x.git] / lfs / initscripts
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
0921556c 4# Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19
20###############################################################################
21# Definitions
22###############################################################################
23
24include Config
25
7b9e5f10
MT
26VER = ipfire
27
cd1a2927
MT
28THISAPP = initscripts
29DIR_APP = $(DIR_SRC)/$(THISAPP)
30TARGET = $(DIR_INFO)/$(THISAPP)
31
32###############################################################################
33# Top-level Rules
34###############################################################################
35
36install : $(TARGET)
37
38check :
39
40download :
41
9a7e4d85 42b2 :
cd1a2927
MT
43
44###############################################################################
45# Installation Details
46###############################################################################
47
48$(TARGET) :
49 @$(PREBUILD)
73d9a908 50 install -d -m 755 /etc/rc.d/rc0.d
73d9a908 51 install -d -m 755 /etc/rc.d/rc3.d
73d9a908
MT
52 install -d -m 755 /etc/rc.d/rc6.d
53 install -d -m 755 /etc/rc.d/rcsysinit.d
54 install -d -m 755 /etc/rc.d/init.d
d1e90efc
MT
55 install -d -m 755 /etc/rc.d/init.d/networking
56 install -d -m 755 /etc/rc.d/init.d/networking/red.up
57 install -d -m 755 /etc/rc.d/init.d/networking/red.down
069680ac 58 install -d -m 755 /etc/rc.d/helper
73d9a908 59 install -d -m 755 /etc/sysconfig
406f019f 60 -rm -rf /etc/init.d
05207d69 61 ln -svf rc.d/init.d /etc/init.d
73d9a908 62
ee3dec50
MT
63 # Create default ramdisk configuration
64 echo "RAMDISK_MODE=0" > /etc/sysconfig/ramdisk
c4a451ee 65
33f53d55 66 for i in $(DIR_SRC)/src/initscripts/system/*; do \
23104841
MT
67 install -v -m 754 $$i /etc/rc.d/init.d/; \
68 done
69 chmod 644 /etc/rc.d/init.d/functions
70
629fcb1d 71 for i in $(DIR_SRC)/src/initscripts/networking/*; do \
406f019f 72 if [ -f $$i ]; then \
d1e90efc 73 install -v -m 754 $$i /etc/rc.d/init.d/networking/; \
406f019f 74 fi; \
9c16cd92
MT
75 done
76
629fcb1d 77 for i in $(DIR_SRC)/src/initscripts/networking/red.up/*; do \
d1e90efc 78 install -v -m 754 $$i /etc/rc.d/init.d/networking/red.up/; \
9c16cd92
MT
79 done
80
629fcb1d 81 for i in $(DIR_SRC)/src/initscripts/networking/red.down/*; do \
d1e90efc 82 install -v -m 754 $$i /etc/rc.d/init.d/networking/red.down/; \
9c16cd92
MT
83 done
84
65998e0a
MT
85 for i in $(DIR_SRC)/src/initscripts/sysconfig/*; do \
86 install -v -m 644 $$i /etc/sysconfig/; \
87 done
b7ce6aa3 88 chmod -v 755 /etc/sysconfig/{firewall,rc}.local
65998e0a 89
069680ac
MT
90 for i in $(DIR_SRC)/src/initscripts/helper/*; do \
91 install -v -m 755 $$i /etc/rc.d/helper/; \
92 done
93
95dc3f86
JS
94 ln -sf ../init.d/imspetor /etc/rc.d/rc0.d/K01imspetor
95 ln -sf ../init.d/motion /etc/rc.d/rc0.d/K01motion
96 ln -sf ../init.d/vdradmin /etc/rc.d/rc0.d/K01vdradmin
97 ln -sf ../init.d/sslh /etc/rc.d/rc0.d/K02sslh
98 ln -sf ../init.d/fcron /etc/rc.d/rc0.d/K08fcron
99 ln -sf ../init.d/apache /etc/rc.d/rc0.d/K28apache
100 ln -sf ../init.d/sshd /etc/rc.d/rc0.d/K30sshd
101 ln -sf ../init.d/client175 /etc/rc.d/rc0.d/K34client175
102 ln -sf ../init.d/setclock /etc/rc.d/rc0.d/K47setclock
103 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc0.d/K49cyrus-sasl
104 ln -sf ../init.d/vnstat /etc/rc.d/rc0.d/K51vnstat
105 ln -sf ../init.d/conntrackd /etc/rc.d/rc0.d/K77conntrackd
106 ln -sf ../init.d/suricata /etc/rc.d/rc0.d/K78suricata
107 ln -sf ../init.d/leds /etc/rc.d/rc0.d/K79leds
108 ln -sf ../init.d/network /etc/rc.d/rc0.d/K80network
109 ln -sf ../init.d/wlanclient /etc/rc.d/rc0.d/K82wlanclient
110 ln -sf ../init.d/messagebus /etc/rc.d/rc0.d/K85messagebus
111 ln -sf ../init.d/unbound /etc/rc.d/rc0.d/K86unbound
3c90d643
JS
112 ln -sf ../init.d/sysklogd /etc/rc.d/rc0.d/K90sysklogd
113 ln -sf ../init.d/sendsignals /etc/rc.d/rc0.d/S60sendsignals
114 ln -sf ../init.d/localnet /etc/rc.d/rc0.d/S70localnet
115 ln -sf ../init.d/mountfs /etc/rc.d/rc0.d/S80mountfs
116 ln -sf ../init.d/swap /etc/rc.d/rc0.d/S90swap
117 ln -sf ../init.d/halt /etc/rc.d/rc0.d/S99halt
95dc3f86
JS
118
119 ln -sf ../init.d/vnstat /etc/rc.d/rc3.d/S01vnstat
3c90d643 120 ln -sf ../init.d/sysklogd /etc/rc.d/rc3.d/S10sysklogd
95dc3f86
JS
121 ln -sf ../init.d/unbound /etc/rc.d/rc3.d/S11unbound
122 ln -sf ../init.d/fireinfo /etc/rc.d/rc3.d/S15fireinfo
3c90d643 123 ln -sf ../init.d/messagebus /etc/rc.d/rc3.d/S15messagebus
3c90d643 124 ln -sf ../init.d/cpufreq /etc/rc.d/rc3.d/S18cpufreq
95dc3f86
JS
125 ln -sf ../init.d/smartenabler /etc/rc.d/rc3.d/S19smartenabler
126 ln -sf ../init.d/wlanclient /etc/rc.d/rc3.d/S19wlanclient
127 ln -sf ../init.d/network /etc/rc.d/rc3.d/S20network
128 ln -sf ../init.d/leds /etc/rc.d/rc3.d/S21leds
129 ln -sf ../init.d/conntrackd /etc/rc.d/rc3.d/S22conntrackd
130 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc3.d/S24cyrus-sasl
3c90d643 131 ln -sf ../init.d/sshd /etc/rc.d/rc3.d/S30sshd
3c90d643 132 ln -sf ../init.d/apache /etc/rc.d/rc3.d/S32apache
3c90d643 133 ln -sf ../init.d/fcron /etc/rc.d/rc3.d/S40fcron
3c90d643 134 ln -sf ../init.d/client175 /etc/rc.d/rc3.d/S66client175
95dc3f86 135 ln -sf ../../sysconfig/rc.local /etc/rc.d/rc3.d/S98rc.local
3c90d643 136 ln -sf ../init.d/sslh /etc/rc.d/rc3.d/S98sslh
3c90d643 137 ln -sf ../init.d/imspetor /etc/rc.d/rc3.d/S99imspetor
95dc3f86
JS
138 ln -sf ../init.d/motion /etc/rc.d/rc3.d/S99motion
139 ln -sf ../init.d/vdradmin /etc/rc.d/rc3.d/S99vdradmin
140
3c90d643 141 ln -sf ../init.d/imspetor /etc/rc.d/rc6.d/K01imspetor
95dc3f86
JS
142 ln -sf ../init.d/motion /etc/rc.d/rc6.d/K01motion
143 ln -sf ../init.d/vdradmin /etc/rc.d/rc6.d/K01vdradmin
144 ln -sf ../init.d/sslh /etc/rc.d/rc6.d/K02sslh
145 ln -sf ../init.d/fcron /etc/rc.d/rc6.d/K08fcron
146 ln -sf ../init.d/apache /etc/rc.d/rc6.d/K28apache
147 ln -sf ../init.d/sshd /etc/rc.d/rc6.d/K30sshd
148 ln -sf ../init.d/client175 /etc/rc.d/rc6.d/K34client175
149 ln -sf ../init.d/setclock /etc/rc.d/rc6.d/K47setclock
3c90d643 150 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc6.d/K49cyrus-sasl
95dc3f86 151 ln -sf ../init.d/vnstat /etc/rc.d/rc6.d/K51vnstat
3c90d643 152 ln -sf ../init.d/conntrackd /etc/rc.d/rc6.d/K77conntrackd
95dc3f86
JS
153 ln -sf ../init.d/suricata /etc/rc.d/rc6.d/K78suricata
154 ln -sf ../init.d/leds /etc/rc.d/rc6.d/K79leds
155 ln -sf ../init.d/network /etc/rc.d/rc6.d/K80network
156 ln -sf ../init.d/wlanclient /etc/rc.d/rc6.d/K82wlanclient
157 ln -sf ../init.d/messagebus /etc/rc.d/rc6.d/K85messagebus
158 ln -sf ../init.d/unbound /etc/rc.d/rc6.d/K86unbound
159 ln -sf ../init.d/sysklogd /etc/rc.d/rc6.d/K90sysklogd
160 ln -sf ../init.d/sendsignals /etc/rc.d/rc6.d/S60sendsignals
161 ln -sf ../init.d/mountfs /etc/rc.d/rc6.d/S70mountfs
162 ln -sf ../init.d/swap /etc/rc.d/rc6.d/S80swap
163 ln -sf ../init.d/localnet /etc/rc.d/rc6.d/S90localnet
164 ln -sf ../init.d/reboot /etc/rc.d/rc6.d/S99reboot
165
3c90d643
JS
166 ln -sf ../init.d/mountkernfs /etc/rc.d/rcsysinit.d/S00mountkernfs
167 ln -sf ../init.d/sysctl /etc/rc.d/rcsysinit.d/S01sysctl
168 ln -sf ../init.d/modules /etc/rc.d/rcsysinit.d/S05modules
169 ln -sf ../init.d/udev /etc/rc.d/rcsysinit.d/S10udev
170 ln -sf ../init.d/waitdrives /etc/rc.d/rcsysinit.d/S19waitdrives
171 ln -sf ../init.d/partresize /etc/rc.d/rcsysinit.d/S25partresize
172 ln -sf ../init.d/checkfs /etc/rc.d/rcsysinit.d/S30checkfs
173 ln -sf ../init.d/mountfs /etc/rc.d/rcsysinit.d/S40mountfs
174 ln -sf ../init.d/swap /etc/rc.d/rcsysinit.d/S41swap
175 ln -sf ../init.d/fsresize /etc/rc.d/rcsysinit.d/S42fsresize
176 ln -sf ../init.d/mounttmpfs /etc/rc.d/rcsysinit.d/S43mounttmpfs
177 ln -sf ../init.d/smt /etc/rc.d/rcsysinit.d/S44smt
178 ln -sf ../init.d/udev_retry /etc/rc.d/rcsysinit.d/S45udev_retry
179 ln -sf ../init.d/cleanfs /etc/rc.d/rcsysinit.d/S50cleanfs
180 ln -sf ../init.d/setclock /etc/rc.d/rcsysinit.d/S60setclock
3c90d643
JS
181 ln -sf ../init.d/console /etc/rc.d/rcsysinit.d/S70console
182 ln -sf ../init.d/pakfire /etc/rc.d/rcsysinit.d/S71pakfire
183 ln -sf ../init.d/cloud-init /etc/rc.d/rcsysinit.d/S74cloud-init
184 ln -sf ../init.d/firstsetup /etc/rc.d/rcsysinit.d/S75firstsetup
185 ln -sf ../init.d/localnet /etc/rc.d/rcsysinit.d/S80localnet
186 ln -sf ../init.d/firewall /etc/rc.d/rcsysinit.d/S85firewall
485e4c15 187
d1e90efc 188 ln -sf ../../../../../usr/local/bin/qosctrl \
3027c6bb 189 /etc/rc.d/init.d/networking/red.up/24-RS-qos
3027c6bb 190 ln -sf ../../squid /etc/rc.d/init.d/networking/red.up/27-RS-squid
d1e90efc
MT
191
192 for i in green blue orange; do \
193 ln -sf any /etc/rc.d/init.d/networking/$$i; \
194 done
e4436f12 195
69acde2e 196 # intel intel no swconfig
dc7d6b20 197ifeq "$(BUILD_PLATFORM)" "arm"
ffeb717f 198 ln -sf ../init.d/swconfig /etc/rc.d/rcsysinit.d/S73swconfig
e4436f12 199else
ffeb717f 200 rm -vf /etc/rc.d/init.d/swconfig
69acde2e 201endif
10c30c20
AF
202 ln -sf ../init.d/acpid /etc/rc.d/rc3.d/S12acpid
203 ln -sf ../init.d/acpid /etc/rc.d/rc0.d/K87acpid
204 ln -sf ../init.d/acpid /etc/rc.d/rc6.d/K87acpid
cd1a2927 205 @$(POSTBUILD)