Browse Source

revert previous, requested by kettenis@ and deraadt@

OPENBSD_4_6
schwarze 15 years ago
parent
commit
bc9cb7a339
4 changed files with 19 additions and 5 deletions
  1. +2
    -2
      src/etc/Makefile
  2. +3
    -2
      src/etc/crontab
  3. +11
    -0
      src/etc/monthly
  4. +3
    -1
      src/etc/mtree/special

+ 2
- 2
src/etc/Makefile View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.275 2009/05/09 14:21:24 schwarze Exp $
# $OpenBSD: Makefile,v 1.276 2009/05/09 16:29:54 schwarze Exp $
TZDIR= /usr/share/zoneinfo
LOCALTIME= Canada/Mountain
@ -14,7 +14,7 @@ BINOWN= root
BINGRP= wheel
BIN1= changelist ccd.conf csh.cshrc csh.login csh.logout daily dhcpd.conf \
exports ftpusers ftpchroot gettytab group hosts hosts.lpd inetd.conf \
ksh.kshrc locate.rc man.conf motd mrouted.conf myname \
ksh.kshrc locate.rc man.conf monthly motd mrouted.conf myname \
netstart networks newsyslog.conf phones printcap protocols \
rbootd.conf rc rc.conf rc.local rc.securelevel rc.shutdown \
remote rpc security services shells syslog.conf weekly \


+ 3
- 2
src/etc/crontab View File

@ -1,4 +1,4 @@
# $OpenBSD: crontab,v 1.16 2009/05/09 14:21:24 schwarze Exp $
# $OpenBSD: crontab,v 1.17 2009/05/09 16:29:54 schwarze Exp $
#
# /var/cron/tabs/root - root's crontab
#
@ -16,7 +16,8 @@ HOME=/var/log
# send log file notifications, if necessary
#1-59 * * * * /usr/bin/newsyslog -m
#
# do daily and weekly maintenance
# do daily/weekly/monthly maintenance
30 1 * * * umask 077; /bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "`/bin/hostname` daily output" root
30 3 * * 6 umask 077; /bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | mail -s "`/bin/hostname` weekly output" root
30 5 1 * * umask 077; /bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | mail -s "`/bin/hostname` monthly output" root
#0 * * * * /usr/libexec/spamd-setup

+ 11
- 0
src/etc/monthly View File

@ -0,0 +1,11 @@
#!/bin/sh -
# $OpenBSD: monthly,v 1.9 2009/05/09 16:29:54 schwarze Exp $
umask 022
if [ -f /etc/monthly.local ];then
echo ""
echo "Running monthly.local:"
. /etc/monthly.local
else
echo "Nothing to do!"
fi

+ 3
- 1
src/etc/mtree/special View File

@ -1,4 +1,4 @@
# $OpenBSD: special,v 1.83 2009/05/09 14:21:24 schwarze Exp $
# $OpenBSD: special,v 1.84 2009/05/09 16:29:54 schwarze Exp $
# $NetBSD: special,v 1.4 1996/05/08 21:30:18 pk Exp $
# @(#)special 8.2 (Berkeley) 1/23/94
#
@ -47,6 +47,8 @@ login.conf type=file mode=0644 uname=root gname=wheel
mail.rc type=file mode=0644 uname=root gname=wheel
mailer.conf type=file mode=0644 uname=root gname=wheel
master.passwd type=file mode=0600 uname=root gname=wheel
monthly type=file mode=0644 uname=root gname=wheel
monthly.local type=file mode=0644 uname=root gname=wheel optional
mail type=dir mode=0755 uname=root gname=wheel
aliases type=file mode=0644 uname=root gname=wheel optional
aliases.db type=file mode=0644 uname=root gname=wheel optional


Loading…
Cancel
Save