mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 15:26:43 +01:00
Copy /etc/cron.d to /etc/periodic per-request of many.
This wasn't done with a repository copy because there was no history of any consequence. Flames to me.
This commit is contained in:
parent
3a6424f6be
commit
12c88fdf8b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/cvs2svn/branches/TRAINA/; revision=28263
5
etc/periodic/Makefile
Normal file
5
etc/periodic/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $Id: Makefile,v 1.1 1997/08/12 18:23:24 pst Exp $
|
||||
|
||||
SUBDIR= daily weekly monthly
|
||||
|
||||
.include <bsd.subdir.mk>
|
12
etc/periodic/Makefile.inc
Normal file
12
etc/periodic/Makefile.inc
Normal file
@ -0,0 +1,12 @@
|
||||
# $Id: Makefile.inc,v 1.1 1997/08/12 18:23:25 pst Exp $
|
||||
|
||||
BINDIR= /etc/periodic/${.CURDIR:T}
|
||||
BINOWN= root
|
||||
BINGRP= wheel
|
||||
|
||||
all depend etc lint:
|
||||
|
||||
install:
|
||||
cd ${.CURDIR}; \
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN} \
|
||||
${DESTDIR}/${BINDIR}
|
15
etc/periodic/daily/100.clean-disks
Executable file
15
etc/periodic/daily/100.clean-disks
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 100.clean-disks,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
# This is a security hole, never use 'find' on a public directory
|
||||
# with -exec rm -f as root. This can be exploited to delete any file
|
||||
# on the system.
|
||||
#
|
||||
|
||||
exit 0 # do not run by default
|
||||
|
||||
find / \( ! -fstype local -o -fstype rdonly \) -a -prune -o \
|
||||
\( -name '[#,]*' -o -name '.#*' -o -name a.out -o -name '*.core' \
|
||||
-o -name '*.CKP' -o -name '.emacs_[0-9]*' \) \
|
||||
-a -atime +3 -exec rm -f -- {} \;
|
32
etc/periodic/daily/110.clean-tmps
Executable file
32
etc/periodic/daily/110.clean-tmps
Executable file
@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 110.clean-tmps,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
# This is a security hole, never use 'find' on a public directory
|
||||
# with -exec rm -f as root. This can be exploited to delete any file
|
||||
# on the system.
|
||||
#
|
||||
# Use at your own risk, but for a long-living system, this might come
|
||||
# more useful than the boot-time cleaning of /tmp. If /var/tmp and
|
||||
# /tmp are symlinked together, only one of the below will actually
|
||||
# run.
|
||||
#
|
||||
|
||||
exit 0 # do not run by default
|
||||
|
||||
if [ -d /tmp ]; then
|
||||
cd /tmp && {
|
||||
find . -type f -atime +3 -ctime +3 ! -name '.X*-lock' \
|
||||
-exec rm -f -- {} \;
|
||||
find -d . ! -name . -type d -mtime +1 -exec rmdir -- {} \; \
|
||||
>/dev/null 2>&1
|
||||
}
|
||||
fi
|
||||
|
||||
if [ -d /var/tmp ]; then
|
||||
cd /var/tmp && {
|
||||
find . ! -name . -atime +7 -ctime +3 -exec rm -f -- {} \;
|
||||
find -d . ! -name . -type d -mtime +1 -exec rmdir -- {} \; \
|
||||
>/dev/null 2>&1
|
||||
}
|
||||
fi
|
10
etc/periodic/daily/120.clean-preserve
Executable file
10
etc/periodic/daily/120.clean-preserve
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 120.clean-preserve,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
|
||||
if [ -d /var/preserve ]; then
|
||||
echo ""
|
||||
echo "Removing stale files from /var/preserve:"
|
||||
cd /var/preserve && find . ! -name . -mtime +7 -exec rm -f -- {} \;
|
||||
fi
|
11
etc/periodic/daily/130.clean-msgs
Executable file
11
etc/periodic/daily/130.clean-msgs
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 130.clean-msgs,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
# remove system messages older than 21 days
|
||||
#
|
||||
if [ -d /var/msgs ] ; then
|
||||
echo
|
||||
echo "Cleaning out old system announcements:"
|
||||
msgs -c
|
||||
fi
|
11
etc/periodic/daily/140.clean-rwho
Executable file
11
etc/periodic/daily/140.clean-rwho
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 140.clean-rwho,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
|
||||
if [ -d /var/rwho ] ; then
|
||||
echo ""
|
||||
echo "Removing stale files from /var/rwho"
|
||||
cd /var/rwho && find . ! -name . -mtime +7 -exec rm -f -- {} \;
|
||||
fi
|
||||
|
35
etc/periodic/daily/200.backup-passwd
Executable file
35
etc/periodic/daily/200.backup-passwd
Executable file
@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 200.backup-passwd,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
bak=/var/backups
|
||||
|
||||
if [ -f /etc/master.passwd -o -f /etc/group ] ; then
|
||||
echo ""
|
||||
echo "Backup passwd and group files:"
|
||||
|
||||
if [ ! -f $bak/master.passwd.bak ] ; then
|
||||
echo "no $bak/master.passwd.bak"
|
||||
cp -p /etc/master.passwd $bak/master.passwd.bak
|
||||
fi
|
||||
|
||||
if cmp -s $bak/master.passwd.bak /etc/master.passwd; then :; else
|
||||
echo "$host passwd diffs:"
|
||||
diff $bak/master.passwd.bak /etc/master.passwd |\
|
||||
sed 's/^\([<>] [^:]*\):[^:]*:/\1:(password):/'
|
||||
mv $bak/master.passwd.bak $bak/master.passwd.bak2
|
||||
cp -p /etc/master.passwd $bak/master.passwd.bak
|
||||
fi
|
||||
|
||||
if [ ! -f $bak/group.bak ] ; then
|
||||
echo "no $bak/group.bak"
|
||||
cp -p /etc/group $bak/group.bak
|
||||
fi
|
||||
|
||||
if cmp -s $bak/group.bak /etc/group; then :; else
|
||||
echo "$host group diffs:"
|
||||
diff $bak/group.bak /etc/group
|
||||
mv $bak/group.bak $bak/group.bak2
|
||||
cp -p /etc/group $bak/group.bak
|
||||
fi
|
||||
fi
|
22
etc/periodic/daily/210.backup-aliases
Executable file
22
etc/periodic/daily/210.backup-aliases
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 210.backup-aliases,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
bak=/var/backups
|
||||
|
||||
if [ -f /etc/aliases ] ; then
|
||||
echo ""
|
||||
echo "Backing up mail aliases:"
|
||||
|
||||
if [ ! -f $bak/aliases.bak ] ; then
|
||||
echo "no $bak/aliases.bak"
|
||||
cp -p /etc/aliases $bak/aliases.bak
|
||||
fi
|
||||
|
||||
if cmp -s $bak/aliases.bak /etc/aliases; then :; else
|
||||
echo "$host aliases diffs:"
|
||||
diff $bak/aliases.bak /etc/aliases
|
||||
mv $bak/aliases.bak $bak/aliases.bak2
|
||||
cp -p /etc/aliases $bak/aliases.bak
|
||||
fi
|
||||
fi
|
15
etc/periodic/daily/220.backup-distfile
Executable file
15
etc/periodic/daily/220.backup-distfile
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 220.backup-distfile,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
bak=/var/backups
|
||||
|
||||
if [ -f /etc/Distfile ]; then
|
||||
echo ""
|
||||
echo "Backing up /etc/Distfile"
|
||||
|
||||
if cmp -s $bak/Distfile.bak /etc/Distfile; then :; else
|
||||
mv $bak/Distfile.bak $bak/Distfile.bak2
|
||||
cp /etc/Distfile $bak/Distfile.bak
|
||||
fi
|
||||
fi
|
17
etc/periodic/daily/300.calendar
Executable file
17
etc/periodic/daily/300.calendar
Executable file
@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 300.calendar,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
# `calendar -a' needs to die. Why? Because it's a bad idea, particular
|
||||
# with networked home directories, but also in general. If you want the
|
||||
# output of `calendar' mailed to you, set up a cron job to do it,
|
||||
# or run it from your ~/.profile or ~/.login.
|
||||
#
|
||||
|
||||
exit 0 # do not run by default
|
||||
|
||||
if [ -f /usr/bin/calendar ] ; then
|
||||
echo ""
|
||||
echo "Running calendar:"
|
||||
calendar -a
|
||||
fi
|
15
etc/periodic/daily/310.accounting
Executable file
15
etc/periodic/daily/310.accounting
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 310.accounting,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
if [ -f /var/account/acct ] ; then
|
||||
echo ""
|
||||
echo "Rotating accounting logs and gathering statistics:"
|
||||
cd /var/account
|
||||
if [ -f acct.2 ] ; then mv -f acct.2 acct.3 ; fi
|
||||
if [ -f acct.1 ] ; then mv -f acct.1 acct.2 ; fi
|
||||
if [ -f acct.0 ] ; then mv -f acct.0 acct.1 ; fi
|
||||
cp -pf acct acct.0
|
||||
sa -s > /dev/null
|
||||
fi
|
10
etc/periodic/daily/320.rdist
Executable file
10
etc/periodic/daily/320.rdist
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 320.rdist,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
if [ -f /etc/Distfile ]; then
|
||||
echo ""
|
||||
echo "Running rdist with /etc/Distfile:"
|
||||
rdist -f /etc/Distfile
|
||||
fi
|
11
etc/periodic/daily/330.news
Executable file
11
etc/periodic/daily/330.news
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 330.news,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
# Expire news articles
|
||||
# (This is present only for backwards compatibility, usually the news
|
||||
# system handles this on its own).
|
||||
|
||||
if [ -f /etc/news.expire ]; then
|
||||
/etc/news.expire
|
||||
fi
|
13
etc/periodic/daily/340.uucp
Executable file
13
etc/periodic/daily/340.uucp
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 340.uucp,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
# Local cleanup of UUCP files. This is for backwards compatibility,
|
||||
# /etc/uuclean.daily doesn't exist by default.
|
||||
#
|
||||
if [ -d /var/spool/uucp -a -f /etc/uuclean.daily ]; then
|
||||
echo ""
|
||||
echo "Cleaning up UUCP:"
|
||||
echo /etc/uuclean.daily | su daemon
|
||||
fi
|
||||
|
14
etc/periodic/daily/400.status-disks
Executable file
14
etc/periodic/daily/400.status-disks
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 400.status-disks,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
|
||||
echo ""
|
||||
echo "Disk status:"
|
||||
|
||||
df -k -t nonfs
|
||||
|
||||
# display which filesystems need backing up
|
||||
|
||||
echo ""
|
||||
dump W
|
10
etc/periodic/daily/410.status-uucp
Executable file
10
etc/periodic/daily/410.status-uucp
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 410.status-uucp,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
|
||||
if [ -d /var/spool/uucp -a -x /usr/bin/uustat ]; then
|
||||
echo ""
|
||||
echo "uucp status:"
|
||||
uustat -a
|
||||
fi
|
10
etc/periodic/daily/420.status-network
Executable file
10
etc/periodic/daily/420.status-network
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 420.status-network,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
if [ -x /usr/bin/netstat ] ; then
|
||||
echo ""
|
||||
echo "Network interface status:"
|
||||
netstat -i
|
||||
fi
|
10
etc/periodic/daily/430.status-rwho
Executable file
10
etc/periodic/daily/430.status-rwho
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 430.status-rwho,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
|
||||
if [ -d /var/rwho -a -x /usr/bin/rwho ] ; then
|
||||
echo ""
|
||||
echo "Local network system status:"
|
||||
ruptime
|
||||
fi
|
10
etc/periodic/daily/440.status-mailq
Executable file
10
etc/periodic/daily/440.status-mailq
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 440.status-mailq,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
if [ -x /usr/sbin/mailq -a -d /var/spool/mqueue ] ; then
|
||||
echo ""
|
||||
echo "Mail in local queue:"
|
||||
|
||||
mailq
|
||||
fi
|
11
etc/periodic/daily/450.status-security
Executable file
11
etc/periodic/daily/450.status-security
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 450.status-security,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
|
||||
#
|
||||
|
||||
if [ -f /etc/security -a -x /usr/sbin/sendmail ] ; then
|
||||
echo ""
|
||||
echo "Security check (output mailed separately)"
|
||||
|
||||
sh /etc/security 2>&1 | sendmail root
|
||||
fi
|
13
etc/periodic/daily/999.local
Executable file
13
etc/periodic/daily/999.local
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $Id: 999.local,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
# Run the old /etc/daily.local script. This is really for backwards
|
||||
# compatibility more than anything else.
|
||||
#
|
||||
if [ -f /etc/daily.local ]; then
|
||||
echo ""
|
||||
echo "Running daily.local:"
|
||||
|
||||
sh /etc/daily.local
|
||||
fi
|
24
etc/periodic/daily/Makefile
Normal file
24
etc/periodic/daily/Makefile
Normal file
@ -0,0 +1,24 @@
|
||||
# $Id: Makefile,v 1.1 1997/08/12 18:23:26 pst Exp $
|
||||
|
||||
BIN= 100.clean-disks \
|
||||
110.clean-tmps \
|
||||
120.clean-preserve \
|
||||
130.clean-msgs \
|
||||
140.clean-rwho \
|
||||
200.backup-passwd \
|
||||
210.backup-aliases \
|
||||
220.backup-distfile \
|
||||
300.calendar \
|
||||
310.accounting \
|
||||
320.rdist \
|
||||
330.news \
|
||||
340.uucp \
|
||||
400.status-disks \
|
||||
410.status-uucp \
|
||||
420.status-network \
|
||||
430.status-rwho \
|
||||
440.status-mailq \
|
||||
450.status-security \
|
||||
999.local
|
||||
|
||||
.include <bsd.prog.mk>
|
11
etc/periodic/monthly/200.accounting
Executable file
11
etc/periodic/monthly/200.accounting
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 200.accounting,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
if [ -x /usr/sbin/ac ] ; then
|
||||
echo ""
|
||||
echo "Doing login accounting:"
|
||||
|
||||
ac -p | sort -nr +1
|
||||
fi
|
10
etc/periodic/monthly/999.local
Executable file
10
etc/periodic/monthly/999.local
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 999.local,v 1.1 1997/08/12 18:23:27 pst Exp $
|
||||
#
|
||||
if [ -f /etc/monthly.local ]; then
|
||||
echo ""
|
||||
echo "Running monthly.local:"
|
||||
|
||||
sh /etc/monthly.local
|
||||
fi
|
6
etc/periodic/monthly/Makefile
Normal file
6
etc/periodic/monthly/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $Id: Makefile,v 1.1 1997/08/12 18:23:28 pst Exp $
|
||||
|
||||
BIN= 200.accounting \
|
||||
999.local
|
||||
|
||||
.include <bsd.prog.mk>
|
42
etc/periodic/weekly/100.clean-src
Executable file
42
etc/periodic/weekly/100.clean-src
Executable file
@ -0,0 +1,42 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 100.clean-src,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
# Clean up /usr/src
|
||||
#
|
||||
# This really hasn't been used in generations, it's just here for
|
||||
# backwards compatibility -- we don't even use SCCS anymore
|
||||
#
|
||||
|
||||
exit 0 # do not run by default
|
||||
|
||||
# see if /usr/src exists and is local before doing anything
|
||||
|
||||
if [ -d /usr/src -a \
|
||||
X"`find -f /usr/src ! -fstype local -prune -or -type d -print -prune`" != X ];
|
||||
then
|
||||
|
||||
echo ""
|
||||
echo "Removing old .o files from /usr/src:"
|
||||
|
||||
find /usr/src -name '*.o' -atime +21 -print -a -exec rm -f {} \;
|
||||
|
||||
echo "looking for checked out files in /usr/src:"
|
||||
TDIR=/tmp/_checkout$$
|
||||
|
||||
mkdir $TDIR
|
||||
|
||||
for file in `find -f /usr/src ! -fstype local -prune -or \
|
||||
-name 'p.*' -print | egrep 'SCCS/p\.'`; do
|
||||
owner=`awk '{ print $3 }' $file`
|
||||
echo "$owner $file"
|
||||
echo $file >> $TDIR/$owner
|
||||
done | sed -e 's,SCCS/p.,,'
|
||||
|
||||
for file in $TDIR/*; do
|
||||
sed -e 's,SCCS/p.,,' $file | \
|
||||
Mail -s 'checked out files' `basename $file`
|
||||
done
|
||||
|
||||
rm -rf $TDIR
|
||||
fi
|
15
etc/periodic/weekly/120.clean-kvmdb
Executable file
15
etc/periodic/weekly/120.clean-kvmdb
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 120.clean-kvmdb,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
if [ -d /var/db -a -x /usr/sbin/sysctl ] ; then
|
||||
echo ""
|
||||
echo "Cleaning up kernel database files:"
|
||||
|
||||
kernel=`sysctl -n kern.bootfile`
|
||||
kernel=kvm_`basename ${kernel}`.db
|
||||
|
||||
find /var/db -name "kvm_*.db" -a ! -name ${kernel} -a \
|
||||
-atime +7 -exec rm -f -- {} \;
|
||||
fi
|
12
etc/periodic/weekly/300.uucp
Executable file
12
etc/periodic/weekly/300.uucp
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 300.uucp,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
# This is really here for backwards compatibility, clean.weekly is not
|
||||
# created by default anymore.
|
||||
|
||||
if [ -d /var/spool/uucp -a -f /usr/libexec/uucp/clean.weekly ]; then
|
||||
echo ""
|
||||
echo "Cleaning up UUCP:"
|
||||
echo /usr/libexec/uucp/clean.weekly | su daemon
|
||||
fi
|
18
etc/periodic/weekly/310.locate
Executable file
18
etc/periodic/weekly/310.locate
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 310.locate,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
locdb=/var/db/locate.database
|
||||
|
||||
if [ -x /usr/libexec/locate.updatedb -a -f $locdb ] ; then
|
||||
|
||||
echo ""
|
||||
echo "Rebuilding locate database:"
|
||||
|
||||
touch ${locdb}; chown nobody ${locdb}; chmod 644 ${locdb}
|
||||
|
||||
echo /usr/libexec/locate.updatedb | nice -5 su -fm nobody 2>&1 |\
|
||||
fgrep -v 'Permission denied'
|
||||
|
||||
chmod 444 ${locdb}
|
||||
fi
|
18
etc/periodic/weekly/320.whatis
Executable file
18
etc/periodic/weekly/320.whatis
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 320.whatis,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
if [ -x /usr/libexec/makewhatis.local -a -d /usr/share/man ] ; then
|
||||
|
||||
echo ""
|
||||
echo "Rebuilding whatis database:"
|
||||
|
||||
if [ -d /usr/X11R6/man ] ; then
|
||||
MANPATH=${MANPATH:-/usr/share/man:/usr/X11R6/man:/usr/local/man}
|
||||
else
|
||||
MANPATH=${MANPATH:-/usr/share/man:/usr/local/man}
|
||||
fi
|
||||
|
||||
/usr/libexec/makewhatis.local "${MANPATH}"
|
||||
fi
|
12
etc/periodic/weekly/330.catman
Executable file
12
etc/periodic/weekly/330.catman
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 330.catman,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
exit 0 # do not run by default
|
||||
|
||||
if [ -x /usr/libexec/catman.local -a -d /usr/share/man/cat1 ] ; then
|
||||
echo ""
|
||||
echo "Reformatting manual pages:"
|
||||
echo /usr/libexec/catman.local "${MANPATH}" | su -fm man
|
||||
fi
|
10
etc/periodic/weekly/999.local
Executable file
10
etc/periodic/weekly/999.local
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: 999.local,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
|
||||
#
|
||||
|
||||
if [ -f /etc/weekly.local ]; then
|
||||
echo ""
|
||||
echo "Running weekly.local:"
|
||||
sh /etc/weekly.local
|
||||
fi
|
11
etc/periodic/weekly/Makefile
Normal file
11
etc/periodic/weekly/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
# $Id: Makefile,v 1.2 1997/08/12 23:11:24 adam Exp $
|
||||
|
||||
BIN= 100.clean-src \
|
||||
120.clean-kvmdb \
|
||||
300.uucp \
|
||||
310.locate \
|
||||
320.whatis \
|
||||
330.catman \
|
||||
999.local
|
||||
|
||||
.include <bsd.prog.mk>
|
Loading…
Reference in New Issue
Block a user