summaryrefslogtreecommitdiffstats
path: root/rules/rootfs_rc_d_links.in
blob: b939918fbd45e9591038f56380ee4e2404bc69ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# ----------------------------------------------------------------------------
menu "startscript links (/etc/rc.d) "
# ----------------------------------------------------------------------------

config ROOTFS_ETC_INITD_UDEV_LINK
	depends on ROOTFS_ETC_INITD_UDEV
	string
	prompt "udev link name"
	default "S00_udev"
	help
	  Set a link to with this name in /etc/rc.d which points to
	  /etc/init.d/udev. Keep this entry empty if you do not want to start
	  this service automatically.

config ROOTFS_ETC_INITD_MODULES_LINK
	depends on ROOTFS_ETC_INITD_MODULES
	string
	prompt "modules link name"
	default "S01_modules"
	help
	  Set a link to with this name in /etc/rc.d which points to
	  /etc/init.d/modules. Keep this entry empty if you do not want to start
	  this service automatically.

config ROOTFS_ETC_INITD_INETD_LINK
	depends on ROOTFS_ETC_INITD_INETD || INETUTILS_ETC_INITD_INETD
	string
	prompt "inted link name"
	default "S11_inetd"
	help
	  Set a link to with this name in /etc/rc.d which points to
	  /etc/init.d/inetd. Keep this entry empty if you do not want to start
	  this service automatically.

config ROOTFS_ETC_INITD_NETWORKING_LINK
	depends on ROOTFS_ETC_INITD_NETWORKING
	string
	prompt "network link name"
	default "S02_networking"
	help
	  Set a link to with this name in /etc/rc.d which points to
	  /etc/init.d/networking. Keep this entry empty if you do not want to
	  start this service automatically.

config ROOTFS_ETC_INITD_SYSLOGNG_LINK
	depends on ROOTFS_ETC_INITD_SYSLOGNG_STARTSCRIPT
	string
	prompt "syslog-ng link name"
	default "S08_syslog-ng"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/syslog-ng to
	  start the syslog-ng daemon when system boots. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_TELNETD_LINK
	depends on ROOTFS_ETC_INITD_TELNETD || ROOTFS_ETC_INITD_UTELNETD
	string
	prompt "telnetd link name"
	default "S07_telnetd"
	help
	  Set a link to with this name in /etc/rc.d which points to
	  /etc/init.d/telnetd. Keep this entry empty if you do not want to start
	  this service automatically.

config ROOTFS_ETC_INITD_BANNER_LINK
	depends on ROOTFS_ETC_INITD_BANNER
	string
	prompt "banner link name"
	default "S03_banner"
	help
	  Set a link to with this name in /etc/rc.d which points to
	  /etc/init.d/banner. Keep this entry empty if you do not want to start
	  this service automatically.

config ROOTFS_ETC_INITD_THTTPD_LINK
	depends on THTTPD
	string
	prompt "thttpd link name"
	default "S10_thttpd"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/thttpd to
	  start thin http daemon when system starts. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_HTTPD_LINK
	depends on ROOTFS_ETC_INITD_HTTPD
	string
	prompt "apache link name"
	default "S08_httpd"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/httpd to
	  start apache when system boots. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_DROPBEAR_LINK
	depends on ROOTFS_ETC_INITD_DROPBEAR
	string
	prompt "dropbear link name"
	default "S08_dropbear"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/dropbear to
	  start dropbear when system boots. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_OPENSSH_LINK
	depends on ROOTFS_ETC_INITD_OPENSSH
	string
	prompt "openssh link name"
	default "S08_openssh"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/openssh to
	  start openssh when system boots. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_PUREFTPD_LINK
	depends on ROOTFS_ETC_INITD_PUREFTPD
	string
	prompt "pureftpd link name"
	default "S09_pureftpd"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/pure-ftpd to
	  start pure ftp daemon when system starts. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_SAMBA_LINK
	depends on ROOTFS_ETC_INITD_SAMBA
	string
	prompt "samba link name"
	default "S10_samba"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/samba to
	  start the samba server.

config ROOTFS_ETC_INITD_CVS_LINK
	depends on CVS_STARTUP_TYPE_STANDALONE
	string
	prompt "cvs link name"
	default "S13_cvs"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/cvs to
	  start cvs as a standalone service when system starts. Keep this entry
	  empty if you do not want to start this service automatically.

config ROOTFS_ETC_INITD_RSYNC_LINK
	depends on RSYNC_STARTUP_TYPE_STANDALONE
	string
	prompt "rsync link name"
	default "S14_rsync"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/rsync to
	  start rsync as a standalone service when system starts. Keep this
	  entry empty if you do not want to start this service automatically.

config ROOTFS_ETC_INITD_DNSMASQ_LINK
	depends on DNSMASQ_STARTUP_TYPE_STANDALONE
	string
	prompt "dnsmasq link name"
	default "S10_dnsmasq"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/dnsmasq to
	  start dnsmasq as a standalone service when system starts. Keep this
	  entry empty if you do not want to start this service automatically.

config ROOTFS_ETC_INITD_PORTMAP_LINK
	depends on PORTMAP_STARTUP_TYPE_STANDALONE
	string
	prompt "portmap link name"
	default "S11_portmapd"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/portmapd to
	  start portmap as a standalone service when system starts. Keep this
	  entry empty if you do not want to start this service automatically.

config ROOTFS_ETC_INITD_FAM_LINK
	depends on FAM_STARTUP_TYPE_STANDALONE
	string
	prompt "fam link name"
	default "S15_famd"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/famd to
	  start fam as a standalone service when system starts. Keep this entry
	  empty if you do not want to start this service automatically.

config ROOTFS_ETC_INITD_SYSLOGD_KLOGD_LINK
	depends on ROOTFS_ETC_INITD_SYSLOGD_KLOGD
	string
	prompt "syslogd link name"
	default "S16_syslogd"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/syslogd to
	  start syslogd/klogd when system starts. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_CROND_LINK
	depends on ROOTFS_ETC_INITD_CROND
	string
	prompt "crond link name"
	default "S17_crond"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/crond to
	  start crond when system starts. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_NFS_LINK
	depends on ROOTFS_ETC_INITD_NFS_DEFAULT || ROOTFS_ETC_INITD_NFS_DEFAULT
	string
	prompt "nfsd link name"
	default "S06_nfsd"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/nfsd to
	  start nfs server when system starts. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_DBUS_LINK
	depends on DBUS_INSTALL_STARTUP_SCRIPT
	string
	prompt "dbus link name"
	default "S18_dbus"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/dbus to
	  start dbus when system starts. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_NTPCLIENT_LINK
	depends on ROOTFS_ETC_INITD_NTPCLIENT_DEFAULT || ROOTFS_ETC_INITD_NTPCLIENT_USER
	string
	prompt "ntpclient link name"
	default "S19_ntpclient"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/ntpclient to
	  start ntpclientd when system starts. Keep this entry empty if
	  you do not want to start this service automatically.

config ROOTFS_ETC_INITD_TIMEKEEPER_LINK
	depends on ROOTFS_ETC_INITD_HWCLOCK
	string
	prompt "timekeeper link name"
	default "S20_timekeeper"
	help
	  Set a link into /etc/rc.d which points to /etc/init.d/timekeerper to
	  sync the system with an internal real time clock when it starts up.
	  Keep this entry empty if you want to sync manually.

# ----------------------------------------------------------------------------

endmenu