]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - lfs/initscripts
Merge remote-tracking branch 'alfh/feature_firewalllogcountry' into beyond-next
[people/teissler/ipfire-2.x.git] / lfs / initscripts
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
485e4c15 4# Copyright (C) 2010 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###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
7b9e5f10
MT
27VER = ipfire
28
cd1a2927
MT
29THISAPP = initscripts
30DIR_APP = $(DIR_SRC)/$(THISAPP)
31TARGET = $(DIR_INFO)/$(THISAPP)
32
33###############################################################################
34# Top-level Rules
35###############################################################################
36
37install : $(TARGET)
38
39check :
40
41download :
42
43md5 :
44
45###############################################################################
46# Installation Details
47###############################################################################
48
49$(TARGET) :
50 @$(PREBUILD)
73d9a908 51 install -d -m 755 /etc/rc.d/rc0.d
73d9a908 52 install -d -m 755 /etc/rc.d/rc3.d
73d9a908
MT
53 install -d -m 755 /etc/rc.d/rc6.d
54 install -d -m 755 /etc/rc.d/rcsysinit.d
55 install -d -m 755 /etc/rc.d/init.d
d1e90efc
MT
56 install -d -m 755 /etc/rc.d/init.d/networking
57 install -d -m 755 /etc/rc.d/init.d/networking/red.up
58 install -d -m 755 /etc/rc.d/init.d/networking/red.down
069680ac 59 install -d -m 755 /etc/rc.d/helper
73d9a908 60 install -d -m 755 /etc/sysconfig
406f019f 61 -rm -rf /etc/init.d
05207d69 62 ln -svf rc.d/init.d /etc/init.d
73d9a908 63
23104841
MT
64 for i in $(DIR_SRC)/src/initscripts/init.d/*; do \
65 install -v -m 754 $$i /etc/rc.d/init.d/; \
66 done
67 chmod 644 /etc/rc.d/init.d/functions
68
d1e90efc 69 for i in $(DIR_SRC)/src/initscripts/init.d/networking/*; do \
406f019f 70 if [ -f $$i ]; then \
d1e90efc 71 install -v -m 754 $$i /etc/rc.d/init.d/networking/; \
406f019f 72 fi; \
9c16cd92
MT
73 done
74
d1e90efc
MT
75 for i in $(DIR_SRC)/src/initscripts/init.d/networking/red.up/*; do \
76 install -v -m 754 $$i /etc/rc.d/init.d/networking/red.up/; \
9c16cd92
MT
77 done
78
d1e90efc
MT
79 for i in $(DIR_SRC)/src/initscripts/init.d/networking/red.down/*; do \
80 install -v -m 754 $$i /etc/rc.d/init.d/networking/red.down/; \
9c16cd92
MT
81 done
82
65998e0a
MT
83 for i in $(DIR_SRC)/src/initscripts/sysconfig/*; do \
84 install -v -m 644 $$i /etc/sysconfig/; \
85 done
b7ce6aa3 86 chmod -v 755 /etc/sysconfig/{firewall,rc}.local
65998e0a 87
069680ac
MT
88 for i in $(DIR_SRC)/src/initscripts/helper/*; do \
89 install -v -m 755 $$i /etc/rc.d/helper/; \
90 done
91
73d9a908
MT
92 ln -sf ../init.d/sysklogd /etc/rc.d/rc0.d/K90sysklogd
93 ln -sf ../init.d/sendsignals /etc/rc.d/rc0.d/S60sendsignals
55b4c7ed
MT
94 ln -sf ../init.d/localnet /etc/rc.d/rc0.d/S70localnet
95 ln -sf ../init.d/mountfs /etc/rc.d/rc0.d/S80mountfs
96 ln -sf ../init.d/swap /etc/rc.d/rc0.d/S90swap
73d9a908 97 ln -sf ../init.d/halt /etc/rc.d/rc0.d/S99halt
73d9a908 98 ln -sf ../init.d/sysklogd /etc/rc.d/rc3.d/S10sysklogd
d7fb75d9 99 ln -sf ../init.d/smartenabler /etc/rc.d/rc3.d/S19smartenabler
2c1b94f0
AF
100 ln -sf ../init.d/messagebus /etc/rc.d/rc3.d/S15messagebus
101 ln -sf ../init.d/messagebus /etc/rc.d/rc0.d/K85messagebus
102 ln -sf ../init.d/messagebus /etc/rc.d/rc6.d/K85messagebus
103 ln -sf ../init.d/bluetooth /etc/rc.d/rc3.d/S16bluetooth
104 ln -sf ../init.d/bluetooth /etc/rc.d/rc0.d/K84bluetooth
105 ln -sf ../init.d/bluetooth /etc/rc.d/rc6.d/K84bluetooth
d2c65e37 106 ln -sf ../init.d/cpufreq /etc/rc.d/rc3.d/S18cpufreq
73d9a908
MT
107 ln -sf ../init.d/sysklogd /etc/rc.d/rc6.d/K90sysklogd
108 ln -sf ../init.d/sendsignals /etc/rc.d/rc6.d/S60sendsignals
109 ln -sf ../init.d/mountfs /etc/rc.d/rc6.d/S70mountfs
110 ln -sf ../init.d/swap /etc/rc.d/rc6.d/S80swap
111 ln -sf ../init.d/localnet /etc/rc.d/rc6.d/S90localnet
112 ln -sf ../init.d/reboot /etc/rc.d/rc6.d/S99reboot
23104841 113 ln -sf ../init.d/sshd /etc/rc.d/rc0.d/K30sshd
23104841 114 ln -sf ../init.d/sshd /etc/rc.d/rc3.d/S30sshd
23104841
MT
115 ln -sf ../init.d/sshd /etc/rc.d/rc6.d/K30sshd
116 ln -sf ../init.d/apache /etc/rc.d/rc0.d/K28apache
23104841 117 ln -sf ../init.d/apache /etc/rc.d/rc3.d/S32apache
23104841
MT
118 ln -sf ../init.d/apache /etc/rc.d/rc6.d/K28apache
119 ln -sf ../init.d/fcron /etc/rc.d/rc0.d/K08fcron
23104841 120 ln -sf ../init.d/fcron /etc/rc.d/rc3.d/S40fcron
23104841 121 ln -sf ../init.d/fcron /etc/rc.d/rc6.d/K08fcron
8dc25f04
AF
122 ln -sf ../init.d/snort /etc/rc.d/rc0.d/K78snort
123 ln -sf ../init.d/snort /etc/rc.d/rc6.d/K78snort
3fd5feeb
MT
124 ln -sf ../init.d/network /etc/rc.d/rc0.d/K80network
125 ln -sf ../init.d/network /etc/rc.d/rc3.d/S20network
126 ln -sf ../init.d/network /etc/rc.d/rc6.d/K80network
71e32384
MT
127 ln -sf ../init.d/random /etc/rc.d/rc0.d/K45random
128 ln -sf ../init.d/random /etc/rc.d/rc3.d/S25random
129 ln -sf ../init.d/random /etc/rc.d/rc6.d/K45random
b7ce6aa3 130 ln -sf ../../sysconfig/rc.local /etc/rc.d/rc3.d/S98rc.local
d34d9f3b
AF
131 ln -sf ../init.d/tmpfs /etc/rc.d/rc0.d/K85tmpfs
132 ln -sf ../init.d/tmpfs /etc/rc.d/rc3.d/S01tmpfs
133 ln -sf ../init.d/tmpfs /etc/rc.d/rc6.d/K85tmpfs
52fbfb8c
AF
134 ln -sf ../init.d/mediatomb /etc/rc.d/rc3.d/S98mediatomb
135 ln -sf ../init.d/mediatomb /etc/rc.d/rc0.d/K02mediatomb
136 ln -sf ../init.d/mediatomb /etc/rc.d/rc6.d/K02mediatomb
35f90335
AF
137 ln -sf ../init.d/client175 /etc/rc.d/rc0.d/K34client175
138 ln -sf ../init.d/client175 /etc/rc.d/rc3.d/S66client175
139 ln -sf ../init.d/client175 /etc/rc.d/rc6.d/K34client175
d0515b01
CS
140 ln -sf ../init.d/sslh /etc/rc.d/rc3.d/S98sslh
141 ln -sf ../init.d/sslh /etc/rc.d/rc0.d/K02sslh
142 ln -sf ../init.d/sslh /etc/rc.d/rc6.d/K02sslh
a14691a5
AF
143 ln -sf ../init.d/vdradmin /etc/rc.d/rc3.d/S99vdradmin
144 ln -sf ../init.d/vdradmin /etc/rc.d/rc0.d/K01vdradmin
145 ln -sf ../init.d/vdradmin /etc/rc.d/rc6.d/K01vdradmin
f4c3f459
AF
146 ln -sf ../init.d/motion /etc/rc.d/rc3.d/S99motion
147 ln -sf ../init.d/motion /etc/rc.d/rc0.d/K01motion
148 ln -sf ../init.d/motion /etc/rc.d/rc6.d/K01motion
aac0f711
CS
149 ln -sf ../init.d/imspetor /etc/rc.d/rc3.d/S99imspetor
150 ln -sf ../init.d/imspetor /etc/rc.d/rc0.d/K01imspetor
151 ln -sf ../init.d/imspetor /etc/rc.d/rc6.d/K01imspetor
d7a707a8
AF
152 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc0.d/K49cyrus-sasl
153 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc3.d/S24cyrus-sasl
154 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc6.d/K49cyrus-sasl
d81baab2
MT
155 ln -sf ../init.d/leds /etc/rc.d/rc0.d/K79leds
156 ln -sf ../init.d/leds /etc/rc.d/rc3.d/S21leds
157 ln -sf ../init.d/leds /etc/rc.d/rc6.d/K79leds
485e4c15 158 ln -sf ../init.d/fireinfo /etc/rc.d/rc3.d/S15fireinfo
73d9a908 159 ln -sf ../init.d/mountkernfs /etc/rc.d/rcsysinit.d/S00mountkernfs
dfa68452 160 ln -sf ../init.d/sysctl /etc/rc.d/rcsysinit.d/S01sysctl
73d9a908
MT
161 ln -sf ../init.d/modules /etc/rc.d/rcsysinit.d/S05modules
162 ln -sf ../init.d/udev /etc/rc.d/rcsysinit.d/S10udev
b1e4de05 163 ln -sf ../init.d/waitdrives /etc/rc.d/rcsysinit.d/S19waitdrives
73d9a908
MT
164 ln -sf ../init.d/swap /etc/rc.d/rcsysinit.d/S20swap
165 ln -sf ../init.d/checkfs /etc/rc.d/rcsysinit.d/S30checkfs
166 ln -sf ../init.d/mountfs /etc/rc.d/rcsysinit.d/S40mountfs
167 ln -sf ../init.d/udev_retry /etc/rc.d/rcsysinit.d/S45udev_retry
168 ln -sf ../init.d/cleanfs /etc/rc.d/rcsysinit.d/S50cleanfs
169 ln -sf ../init.d/setclock /etc/rc.d/rcsysinit.d/S60setclock
0721f5a6
AF
170 ln -sf ../init.d/setclock /etc/rc.d/rc0.d/K47setclock
171 ln -sf ../init.d/setclock /etc/rc.d/rc6.d/K47setclock
73d9a908 172 ln -sf ../init.d/console /etc/rc.d/rcsysinit.d/S70console
6cf9e770 173 ln -sf ../init.d/firstsetup /etc/rc.d/rcsysinit.d/S75firstsetup
73d9a908 174 ln -sf ../init.d/localnet /etc/rc.d/rcsysinit.d/S80localnet
7d7740a4 175 ln -sf ../init.d/firewall /etc/rc.d/rcsysinit.d/S85firewall
d23fc912 176 ln -sf ../init.d/network-vlans /etc/rc.d/rcsysinit.d/S91network-vlans
8af8d5d1 177 ln -sf ../init.d/rngd /etc/rc.d/rcsysinit.d/S92rngd
71ea0d68
SS
178 ln -sf ../init.d/wlanclient /etc/rc.d/rc0.d/K82wlanclient
179 ln -sf ../init.d/wlanclient /etc/rc.d/rc3.d/S19wlanclient
180 ln -sf ../init.d/wlanclient /etc/rc.d/rc6.d/K82wlanclient
485e4c15 181
d1e90efc
MT
182 ln -sf ../../dnsmasq /etc/rc.d/init.d/networking/red.up/05-RS-dnsmasq
183 ln -sf ../../firewall /etc/rc.d/init.d/networking/red.up/20-RL-firewall
d1e90efc 184 ln -sf ../../../../../usr/local/bin/snortctrl \
3027c6bb 185 /etc/rc.d/init.d/networking/red.up/23-RS-snort
d1e90efc 186 ln -sf ../../../../../usr/local/bin/qosctrl \
3027c6bb 187 /etc/rc.d/init.d/networking/red.up/24-RS-qos
3027c6bb 188 ln -sf ../../squid /etc/rc.d/init.d/networking/red.up/27-RS-squid
d1e90efc
MT
189 ln -sf ../../dnsmasq /etc/rc.d/init.d/networking/red.down/05-RS-dnsmasq
190 ln -sf ../../firewall /etc/rc.d/init.d/networking/red.down/20-RL-firewall
191
192 for i in green blue orange; do \
193 ln -sf any /etc/rc.d/init.d/networking/$$i; \
194 done
e4436f12 195
444b9419 196 # ARM does not need checkfstab and acpid
e4436f12 197ifeq "$(MACHINE_TYPE)" "arm"
444b9419 198 rm -vf /etc/rc.d/init.d/{acpid,checkfstab}
e4436f12 199else
10c30c20
AF
200 ln -sf ../init.d/acpid /etc/rc.d/rc3.d/S12acpid
201 ln -sf ../init.d/acpid /etc/rc.d/rc0.d/K87acpid
202 ln -sf ../init.d/acpid /etc/rc.d/rc6.d/K87acpid
e4436f12
MT
203 ln -sf ../init.d/checkfstab /etc/rc.d/rcsysinit.d/S19checkfstab
204endif
205
cd1a2927 206 @$(POSTBUILD)