Deleted Added
full compact
1# $FreeBSD: head/etc/rc.d/Makefile 271493 2014-09-13 02:15:31Z delphij $
1# $FreeBSD: head/etc/rc.d/Makefile 271696 2014-09-17 02:32:22Z delphij $
2
3.include <src.opts.mk>
4
5FILES= 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 bsnmpd \
31 ${_bthidd} \
32 ${_casperd} \
33 ccd \
34 cleanvar \
35 cleartmp \
36 cron \
37 ctld \
38 ddb \
39 defaultroute \
40 devd \
41 devfs \
42 dhclient \
43 dmesg \
44 dumpon \
45 faith \
46 fsck \
47 ftp-proxy \
48 ftpd \
49 gbde \
50 geli \
51 geli2 \
52 gptboot \
53 gssd \
54 hastd \
55 ${_hcsecd} \
56 hostapd \
57 hostid \
58 hostid_save \
59 hostname \
60 ${_hv_kvpd} \
60 inetd \
61 initrandom \
62 ip6addrctl \
63 ipfilter \
64 ipfs \
65 ipfw \
66 ipmon \
67 ipnat \
68 ipropd_master \
69 ipropd_slave \
70 ipsec \
71 iscsictl \
72 iscsid \
73 jail \
74 kadmind \
75 kdc \
76 keyserv \
77 kfd \
78 kld \
79 kldxref \
80 kpasswdd \
81 ldconfig \
82 local \
83 localpkg \
84 lockd \
85 lpd \
86 mixer \
87 motd \
88 mountcritlocal \
89 mountcritremote \
90 mountlate \
91 mdconfig \
92 mdconfig2 \
93 mountd \
94 moused \
95 mroute6d \
96 mrouted \
97 msgs \
98 natd \
99 netif \
100 netoptions \
101 netwait \
102 newsyslog \
103 nfsclient \
104 nfscbd \
105 nfsd \
106 nfsuserd \
107 nisdomain \
108 ${_nscd} \
109 nsswitch \
110 ntpd \
111 ntpdate \
112 ${_opensm} \
113 othermta \
114 pf \
115 pflog \
116 pfsync \
117 postrandom \
118 powerd \
119 power_profile \
120 ppp \
121 pppoed \
122 pwcheck \
123 quota \
124 random \
125 rarpd \
126 rctl \
127 resolv \
128 rfcomm_pppd_server \
129 root \
130 route6d \
131 routed \
132 routing \
133 rpcbind \
134 rtadvd \
135 rtsold \
136 rwho \
137 savecore \
138 sdpd \
139 securelevel \
140 sendmail \
141 serial \
142 sppp \
143 ${_sshd} \
144 statd \
145 static_arp \
146 static_ndp \
147 stf \
148 swap \
149 swaplate \
150 syscons \
151 sysctl \
152 syslogd \
153 timed \
154 tmp \
155 ${_ubthidhci} \
156 ugidfw \
157 ${_unbound} \
158 ${_utx} \
159 var \
160 virecover \
161 watchdogd \
162 wpa_supplicant \
163 ypbind \
164 yppasswdd \
165 ypserv \
166 ypset \
167 ypupdated \
168 ypxfrd \
169 zfs \
170 zvol
171
172.if ${MK_OFED} != "no"
173_opensm= opensm
174.endif
175
176.if ${MK_OPENSSH} != "no"
177_sshd= sshd
178.endif
179
180.if ${MK_NS_CACHING} != "no"
181_nscd= nscd
182.endif
183
184.if ${MK_BLUETOOTH} != "no"
185_bluetooth= bluetooth
186_bthidd= bthidd
187_hcsecd= hcsecd
188_ubthidhci= ubthidhci
189.endif
190
191.if ${MK_CASPER} != "no"
192_casperd= casperd
193.endif
194
196.if ${MK_HYPERV} != "no"
197_hv_kvpd= hv_kvpd
198.endif
199
195.if ${MK_UNBOUND} != "no"
196_unbound= local_unbound
197.endif
198
199.if ${MK_UTMPX} != "no"
200_utx= utx
201.endif
202
203FILESDIR= /etc/rc.d
204FILESMODE= ${BINMODE}
205
206.include <bsd.prog.mk>