diff options
Diffstat (limited to 'source/a/pkgtools/scripts/setup.services')
-rw-r--r-- | source/a/pkgtools/scripts/setup.services | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/source/a/pkgtools/scripts/setup.services b/source/a/pkgtools/scripts/setup.services index b57ad33f..47b4cef7 100644 --- a/source/a/pkgtools/scripts/setup.services +++ b/source/a/pkgtools/scripts/setup.services @@ -31,6 +31,17 @@ if [ -r etc/rc.d/rc.atalk ]; then EOF fi +if [ -r etc/rc.d/rc.atd ]; then + if [ -x etc/rc.d/rc.atd ]; then + RC_ATD=on + else + RC_ATD=off + fi + cat << EOF >> $TMP/tmpscript + "rc.atd" "Schedules jobs for later" $RC_ATD "The at daemon schedules jobs to be run at a specified time." \\ +EOF +fi + if [ -r etc/rc.d/rc.bind ]; then if [ -x etc/rc.d/rc.bind ]; then RC_BIND=on @@ -42,6 +53,17 @@ if [ -r etc/rc.d/rc.bind ]; then EOF fi +if [ -r etc/rc.d/rc.crond ]; then + if [ -x etc/rc.d/rc.crond ]; then + RC_CROND=on + else + RC_CROND=off + fi + cat << EOF >> $TMP/tmpscript + "rc.crond" "Time based job scheduler" $RC_CROND "The cron daemon schedules jobs to run at fixed times, dates, or intervals." \\ +EOF +fi + if [ -r etc/rc.d/rc.cups ]; then if [ -x etc/rc.d/rc.cups ]; then RC_CUPS=on @@ -306,7 +328,7 @@ if [ ! $? = 0 ]; then exit fi -for service in rc.atalk rc.bind rc.cups rc.dovecot rc.dnsmasq rc.fuse rc.hald rc.hplip rc.httpd rc.inetd rc.ip_forward rc.lprng rc.messagebus rc.mysqld rc.ntpd rc.pcmcia rc.postfix rc.rpc rc.samba rc.saslauthd rc.smartd rc.snmpd rc.sendmail rc.syslog rc.sshd ; do +for service in rc.atalk rc.atd rc.bind rc.crond rc.cups rc.dovecot rc.dnsmasq rc.fuse rc.hald rc.hplip rc.httpd rc.inetd rc.ip_forward rc.lprng rc.messagebus rc.mysqld rc.ntpd rc.pcmcia rc.postfix rc.rpc rc.samba rc.saslauthd rc.smartd rc.snmpd rc.sendmail rc.syslog rc.sshd ; do if [ -f etc/rc.d/$service ]; then if grep -w $service $TMP/reply 1> /dev/null ; then chmod 755 etc/rc.d/$service |