]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/Makefile
Install bsnmp rc.d script if MK_BSNMP != no
[FreeBSD/FreeBSD.git] / etc / rc.d / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 FILES=  DAEMON \
6         FILESYSTEMS \
7         LOGIN \
8         NETWORKING \
9         SERVERS \
10         abi \
11         accounting \
12         addswap \
13         adjkerntz \
14         amd \
15         apm \
16         apmd \
17         archdep \
18         atm1 \
19         atm2 \
20         atm3 \
21         auditd \
22         auditdistd \
23         automount \
24         automountd \
25         autounmountd \
26         bgfsck \
27         ${_bluetooth} \
28         bootparams \
29         bridge \
30         ${_bthidd} \
31         ${_casperd} \
32         cleanvar \
33         cleartmp \
34         cron \
35         ctld \
36         ddb \
37         defaultroute \
38         devd \
39         devfs \
40         dhclient \
41         dmesg \
42         dumpon \
43         fsck \
44         ftpd \
45         gbde \
46         geli \
47         geli2 \
48         gptboot \
49         growfs \
50         gssd \
51         hastd \
52         ${_hcsecd} \
53         hostapd \
54         hostid \
55         hostid_save \
56         hostname \
57         inetd \
58         ip6addrctl \
59         ipfilter \
60         ipfs \
61         ipfw \
62         ipmon \
63         ipnat \
64         ipropd_master \
65         ipropd_slave \
66         ipsec \
67         jail \
68         ${_kadmind} \
69         ${_kdc} \
70         ${_kfd} \
71         kld \
72         kldxref \
73         ${_kpasswdd} \
74         ldconfig \
75         local \
76         localpkg \
77         lockd \
78         lpd \
79         mixer \
80         motd \
81         mountcritlocal \
82         mountcritremote \
83         mountlate \
84         mdconfig \
85         mdconfig2 \
86         mountd \
87         moused \
88         mroute6d \
89         msgs \
90         natd \
91         netif \
92         netoptions \
93         netwait \
94         newsyslog \
95         nfsclient \
96         nfscbd \
97         nfsd \
98         nfsuserd \
99         nisdomain \
100         ${_nscd} \
101         nsswitch \
102         ntpd \
103         ntpdate \
104         ${_opensm} \
105         othermta \
106         pf \
107         pflog \
108         pfsync \
109         powerd \
110         power_profile \
111         ppp \
112         pppoed \
113         pwcheck \
114         quota \
115         random \
116         rarpd \
117         rctl \
118         resolv \
119         rfcomm_pppd_server \
120         root \
121         route6d \
122         routed \
123         routing \
124         rpcbind \
125         rtadvd \
126         rtsold \
127         savecore \
128         sdpd \
129         securelevel \
130         sendmail \
131         serial \
132         sppp \
133         ${_sshd} \
134         statd \
135         static_arp \
136         static_ndp \
137         stf \
138         swap \
139         swaplate \
140         syscons \
141         sysctl \
142         syslogd \
143         timed \
144         tmp \
145         ${_ubthidhci} \
146         ugidfw \
147         ${_unbound} \
148         ${_utx} \
149         var \
150         virecover \
151         watchdogd \
152         wpa_supplicant \
153         ypbind \
154         yppasswdd \
155         ypserv \
156         ypset \
157         ypupdated \
158         ypxfrd \
159         zfs \
160         zvol
161
162 .if ${MK_BLUETOOTH} != "no"
163 _bluetooth=     bluetooth
164 _bthidd=        bthidd
165 _hcsecd=        hcsecd
166 _ubthidhci=     ubthidhci
167 .endif
168
169 .if ${MK_BSNMP} != "no"
170 FILES+=         bsnmpd
171 .endif
172
173 .if ${MK_CASPER} != "no"
174 _casperd=       casperd
175 .endif
176
177 .if ${MK_CCD} != "no"
178 FILES+=         ccd
179 .endif
180
181 .if ${MK_ISCSI} != "no"
182 FILES+=         iscsictl
183 FILES+=         iscsid
184 .endif
185
186 .if ${MK_NS_CACHING} != "no"
187 _nscd=          nscd
188 .endif
189
190 .if ${MK_KERBEROS} != "no"
191 _kadmind=       kadmind
192 _kdc=           kdc
193 _kfd=           kfd
194 _kpasswdd=      kpasswdd
195 .endif
196
197 .if ${MK_OFED} != "no"
198 _opensm=        opensm
199 .endif
200
201 .if ${MK_OPENSSL} != "no"
202 FILES+=         keyserv
203 .endif
204
205 .if ${MK_OPENSSH} != "no"
206 _sshd=          sshd
207 .endif
208
209 .if ${MK_PF} != "no"
210 FILES+=         ftp-proxy
211 .endif
212
213 .if ${MK_RCMDS} != "no"
214 FILES+=         rwho
215 .endif
216
217 .if ${MK_UNBOUND} != "no"
218 _unbound=       local_unbound
219 .endif
220
221 .if ${MK_UTMPX} != "no"
222 _utx=           utx
223 .endif
224
225 FILESDIR=       /etc/rc.d
226 FILESMODE=      ${BINMODE}
227
228 .include <bsd.prog.mk>