Show
Ignore:
Timestamp:
08/17/07 12:12:18 (5 years ago)
Author:
tg
Message:

• 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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/busybox/files/syslog.init

    r3512 r3514  
    88autostop) ;; 
    99autostart) 
    10         test x"${syslogd:-NO}" = x"NO" && exit 0 
    11         exec sh $0 start 
     10        [[ $syslogd_flags = NO ]] && exit 0 
     11        exec mksh $0 really start 
    1212        ;; 
    1313start)