diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-26 21:12:35 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-26 21:12:35 +0000 |
| commit | a964be6d2c35243e54bf5ce12c15339d331189cb (patch) | |
| tree | 26495eba10a5d04d8137457f832b376b573dd186 /etc | |
| parent | dc30028e8a31a0604280582224f03e9c70ec1ec0 (diff) | |
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/defaults/periodic.conf | 172 | ||||
| -rw-r--r-- | etc/mail/aliases | 64 | ||||
| -rwxr-xr-x | etc/periodic/weekly/400.status-pkg | 20 |
3 files changed, 0 insertions, 256 deletions
diff --git a/etc/defaults/periodic.conf b/etc/defaults/periodic.conf deleted file mode 100644 index 2ad0e504cc61..000000000000 --- a/etc/defaults/periodic.conf +++ /dev/null @@ -1,172 +0,0 @@ -#!/bin/sh -# -# This is defaults/periodic.conf - a file full of useful variables that -# you can set to change the default behaviour of periodic jobs on your -# system. You should not edit this file! Put any overrides into one of the -# $periodic_conf_files instead and you will be able to update these defaults -# later without spamming your local configuration information. -# -# The $periodic_conf_files files should only contain values which override -# values set in this file. This eases the upgrade path when defaults -# are changed and new features are added. -# -# $FreeBSD$ -# - -# What files override these defaults ? -periodic_conf_files="/etc/periodic.conf /etc/periodic.conf.local" - -# periodic script dirs -local_periodic="/usr/local/etc/periodic /usr/X11R6/etc/periodic" - - -# Daily options - -# 100.clean-disks -daily_clean_disks_enable="NO" # Delete files daily -daily_clean_disks_files="[#,]* .#* a.out *.core *.CKP .emacs_[0-9]*" -daily_clean_disks_days=3 # If older than this -daily_clean_disks_verbose="YES" # Mention files deleted - -# 110.clean-tmps -daily_clean_tmps_enable="NO" # Delete stuff daily -daily_clean_tmps_dirs="/tmp" # Delete under here -daily_clean_tmps_days="3" # If not accessed for -daily_clean_tmps_ignore=".X*-lock quota.user quota.group" # Don't delete these -daily_clean_tmps_verbose="YES" # Mention files deleted - -# 120.clean-preserve -daily_clean_preserve_enable="YES" # Delete files daily -daily_clean_preserve_days=7 # If not modified for -daily_clean_preserve_verbose="YES" # Mention files deleted - -# 130.clean-msgs -daily_clean_msgs_enable="YES" # Delete msgs daily -daily_clean_msgs_days= # If not modified for - -# 140.clean-rwho -daily_clean_rwho_enable="YES" # Delete rwho daily -daily_clean_rwho_days=7 # If not modified for -daily_clean_rwho_verbose="YES" # Mention files deleted - -# 150.clean-hoststat -daily_clean_hoststat_enable="YES" # Delete .hoststat daily -daily_clean_hoststat_days=3 # If not modified for -daily_clean_hoststat_verbose="YES" # Mention files deleted - -# 200.backup-passwd -daily_backup_passwd_enable="YES" # Backup passwd & group - -# 210.backup-aliases -daily_backup_aliases_enable="YES" # Backup mail aliases - -# 220.backup-distfile -daily_backup_distfile_enable="YES" # Backup distfile - -# 300.calendar -daily_calendar_enable="NO" # Run calendar -a - -# 310.accounting -daily_accounting_enable="YES" # Rotate acct files -daily_accounting_compress="NO" # Gzip rotated files - -# 320.distfile -daily_distfile_enable="YES" # Run rdist daily - -# 330.news -daily_news_expire_enable="YES" # Run news.expire - -# 340.uucp -daily_uuclean_enable="YES" # Run uuclean.daily - -# 400.status-disks -daily_status_disks_enable="YES" # Check disk status -daily_status_disks_df_flags="-k -t nonfs" # df(1) flags for check - -# 410.status-uucp -daily_status_uucp_enable="YES" # Check uucp status - -# 420.status-network -daily_status_network_enable="YES" # Check network status -daily_status_network_usedns="YES" # DNS lookups are ok - -# 430.status-rwho -daily_status_rwho_enable="YES" # Check system status - -# 440.status-mailq -daily_status_mailq_enable="YES" # Check mail status -daily_status_mailq_shorten="NO" # Shorten output - -# 450.status-security -daily_status_security_enable="YES" # Security check -daily_status_security_inline="NO" # Run inline ? -daily_status_security_noamd="NO" # Don't check amd mounts -daily_status_security_nomfs="NO" # Don't check mfs mounts - -# 460.status-mail-rejects -daily_status_mail_rejects_enable="YES" # Check mail rejects -daily_status_mail_rejects_logs=3 # How many logs to check - -# 999.local -daily_local="/etc/daily.local" # Local scripts - - -# Weekly options - -# 120.clean-kvmdb -weekly_clean_kvmdb_enable="YES" # Clean kvmdb weekly -weekly_clean_kvmdb_days=7 # If not accessed for -weekly_clean_kvmdb_verbose="YES" # Mention files deleted - -# 300.uucp -weekly_uucp_enable="YES" # Clean uucp weekly - -# 310.locate -weekly_locate_enable="YES" # Update locate weekly - -# 320.whatis -weekly_whatis_enable="YES" # Update whatis weekly - -# 330.catman -weekly_catman_enable="NO" # Preformat man pages - -# 340.noid -weekly_noid_enable="NO" # Find unowned files -weekly_noid_dirs="/" # Look here - -# 400.status-pkg -weekly_status_pkg_enable="NO" # Find out-of-date pkgs - -# 999.local -weekly_local="/etc/weekly.local" # Local scripts - - -# Monthly options - -# 200.accounting -monthly_accounting_enable="YES" # Login accounting - -# 999.local -monthly_local="/etc/monthly.local" # Local scripts - - -# Define source_periodic_confs, the mechanism used by /etc/periodic/*/* -# scripts to source defaults/periodic.conf overrides safely. - -if [ -z "${source_periodic_confs_defined}" ]; then - source_periodic_confs_defined=yes - source_periodic_confs () { - local i sourced_files - - for i in ${periodic_conf_files}; do - case ${sourced_files} in - *:$i:*) - ;; - *) - sourced_files="${sourced_files}:$i:" - [ -r $i ] && . $i - ;; - esac - done - } -fi diff --git a/etc/mail/aliases b/etc/mail/aliases deleted file mode 100644 index 3ecde877d1dc..000000000000 --- a/etc/mail/aliases +++ /dev/null @@ -1,64 +0,0 @@ -# $FreeBSD$ -# @(#)aliases 5.3 (Berkeley) 5/24/90 -# -# Aliases in this file will NOT be expanded in the header from -# Mail, but WILL be visible over networks. -# -# >>>>>>>>>> The program "newaliases" must be run after -# >> NOTE >> this file is updated for any changes to -# >>>>>>>>>> show through to sendmail. -# -# -# See also RFC 2142, `MAILBOX NAMES FOR COMMON SERVICES, ROLES -# AND FUNCTIONS', May 1997 - -# Pretty much everything else in this file points to "root", so -# you would do well in either reading roots mailbox or forwarding -# roots email from here. - -# root: me@my.domain - -# Basic system aliases -- these MUST be present -MAILER-DAEMON: postmaster -postmaster: root - -# General redirections for pseudo accounts -bin: root -daemon: root -games: root -man: root -news: root -nobody: root -operator: root -pop: root -system: root -toor: root -usenet: news -uucp: root -xten: root - -# Well-known aliases -- these should be filled in! -# manager: -# dumper: - -# BUSINESS-RELATED MAILBOX NAMES -# info: -# marketing: -# sales: -# support: - -# NETWORK OPERATIONS MAILBOX NAMES -abuse: root -# noc: root -security: root - -# SUPPORT MAILBOX NAMES FOR SPECIFIC INTERNET SERVICES -ftp: root -ftp-bugs: ftp -# hostmaster: root -# webmaster: root -# www: webmaster - -# msgs: "| /usr/bin/msgs -s" -# bit-bucket: /dev/null -# dev-null: bit-bucket diff --git a/etc/periodic/weekly/400.status-pkg b/etc/periodic/weekly/400.status-pkg deleted file mode 100755 index aac228bc9484..000000000000 --- a/etc/periodic/weekly/400.status-pkg +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -# -# $FreeBSD$ -# - -# If there is a global system configuration file, suck it in. -# -if [ -r /etc/defaults/periodic.conf ] -then - . /etc/defaults/periodic.conf - source_periodic_confs -fi - -case "$weekly_status_pkg_enable" in - [Yy][Ee][Ss]) - echo "" - echo "Check for out of date packages:" - - pkg_version -v | sed -n 's/^\([^ ]*\) *< */ \1 /p';; -esac |
