|
Revision 3514, 222 bytes
(checked in by tg, 5 years ago)
|
• remove the ip-up script from openntpd: use rdate for that
restarting an ntp dæmon is exceptionally stupid, because
it needs a very long time to stabilise afterwards again
• change the default config logic for a few packages from
| foo="NO" # foo
| foo_flags="-foo -bar" # foo_flags
to
| foo_flags="NO" # e.g. "-foo -bar"
which is *much* more BSD-rc.conf-like: services which
take flags are disabled by setting these to "NO", and
almost no services still use their name as variable,
since almost all services take flags
• bump dashvers of affected packages
|
| Line | |
|---|
| 1 |
#!/usr/bin/env mksh |
|---|
| 2 |
chmod u+s /bin/busybox |
|---|
| 3 |
. $IPKG_INSTROOT/etc/functions.sh |
|---|
| 4 |
add_rcconf network network YES |
|---|
| 5 |
add_rcconf crond crond NO |
|---|
| 6 |
add_rcconf 'use "-C16" normally, "NO" to disable' syslogd_flags '-C16' |
|---|
| 7 |
add_rcconf inetd |
|---|