summaryrefslogtreecommitdiffstats
path: root/etc/periodic
diff options
context:
space:
mode:
authormtm <mtm@FreeBSD.org>2003-06-30 22:06:26 +0000
committermtm <mtm@FreeBSD.org>2003-06-30 22:06:26 +0000
commit016c135dbaefb273571e739224af99fe347262e2 (patch)
treed7583226bd9d40bd09edf2f59dc7661bbf69729a /etc/periodic
parentb8db4ad194c9901892b9e4a5b1623013d596e762 (diff)
downloadFreeBSD-src-016c135dbaefb273571e739224af99fe347262e2.zip
FreeBSD-src-016c135dbaefb273571e739224af99fe347262e2.tar.gz
Have mktemp(1) construct the temporary file name for us instead
of providing a template manually. Submitted by: Lars Eggert <larse@isi.edu>
Diffstat (limited to 'etc/periodic')
-rwxr-xr-xetc/periodic/security/500.ipfwdenied2
-rw-r--r--etc/periodic/security/510.ipfdenied2
-rwxr-xr-xetc/periodic/security/550.ipfwlimit2
-rwxr-xr-xetc/periodic/security/600.ip6fwdenied2
-rwxr-xr-xetc/periodic/security/650.ip6fwlimit2
-rw-r--r--etc/periodic/security/security.functions2
6 files changed, 6 insertions, 6 deletions
diff --git a/etc/periodic/security/500.ipfwdenied b/etc/periodic/security/500.ipfwdenied
index 7735302..22c63e9 100755
--- a/etc/periodic/security/500.ipfwdenied
+++ b/etc/periodic/security/500.ipfwdenied
@@ -41,7 +41,7 @@ rc=0
case "$daily_status_security_ipfwdenied_enable" in
[Yy][Ee][Ss])
- TMP=`mktemp ${TMPDIR:-/tmp}/security.XXXXXXXXXX`
+ TMP=`mktemp -t security`
if ipfw -a l 2>/dev/null | egrep "deny|reset|unreach" > ${TMP}; then
check_diff new_only ipfw ${TMP} "${host} ipfw denied packets:"
fi
diff --git a/etc/periodic/security/510.ipfdenied b/etc/periodic/security/510.ipfdenied
index 9b3658e..2058d2b 100644
--- a/etc/periodic/security/510.ipfdenied
+++ b/etc/periodic/security/510.ipfdenied
@@ -41,7 +41,7 @@ rc=0
case "$daily_status_security_ipfdenied_enable" in
[Yy][Ee][Ss])
- TMP=`mktemp ${TMPDIR:-/tmp}/security.XXXXXXXXXX`
+ TMP=`mktemp -t security`
if ipfstat -nhio 2>/dev/null | grep block > ${TMP}; then
check_diff new_only ipf ${TMP} "${host} ipf denied packets:"
fi
diff --git a/etc/periodic/security/550.ipfwlimit b/etc/periodic/security/550.ipfwlimit
index d033645..65e8bd2 100755
--- a/etc/periodic/security/550.ipfwlimit
+++ b/etc/periodic/security/550.ipfwlimit
@@ -42,7 +42,7 @@ rc=0
case "$daily_status_security_ipfwlimit_enable" in
[Yy][Ee][Ss])
- TMP=`mktemp ${TMPDIR:-/tmp}/security.XXXXXXXXXX`
+ TMP=`mktemp -t security`
IPFW_LOG_LIMIT=`sysctl -n net.inet.ip.fw.verbose_limit 2> /dev/null`
if [ $? -eq 0 ] && [ "${IPFW_LOG_LIMIT}" -ne 0 ]; then
ipfw -a l | grep " log " | \
diff --git a/etc/periodic/security/600.ip6fwdenied b/etc/periodic/security/600.ip6fwdenied
index 407aa9f..418ba17 100755
--- a/etc/periodic/security/600.ip6fwdenied
+++ b/etc/periodic/security/600.ip6fwdenied
@@ -41,7 +41,7 @@ rc=0
case "$daily_status_security_ip6fwdenied_enable" in
[Yy][Ee][Ss])
- TMP=`mktemp ${TMPDIR:-/tmp}/security.XXXXXXXXXX`
+ TMP=`mktemp -t security`
if ip6fw -a l 2>/dev/null | egrep "deny|reset|unreach" > ${TMP}; then
check_diff new_only ip6fw ${TMP} "${host} ip6fw denied packets:"
fi
diff --git a/etc/periodic/security/650.ip6fwlimit b/etc/periodic/security/650.ip6fwlimit
index 56cdf28..eaf4b10 100755
--- a/etc/periodic/security/650.ip6fwlimit
+++ b/etc/periodic/security/650.ip6fwlimit
@@ -42,7 +42,7 @@ rc=0
case "$daily_status_security_ip6fwlimit_enable" in
[Yy][Ee][Ss])
- TMP=`mktemp ${TMPDIR:-/tmp}/security.XXXXXXXXXX`
+ TMP=`mktemp -t security`
IP6FW_LOG_LIMIT=`sysctl -n net.inet6.ip6.fw.verbose_limit 2> /dev/null`
if [ $? -eq 0 ] && [ "${IP6FW_LOG_LIMIT}" -ne 0 ]; then
ip6fw -a l | grep " log " | \
diff --git a/etc/periodic/security/security.functions b/etc/periodic/security/security.functions
index 20d3b8a..29c61aa 100644
--- a/etc/periodic/security/security.functions
+++ b/etc/periodic/security/security.functions
@@ -52,7 +52,7 @@ check_diff() {
msg="$1"; shift
if [ "${tmpf}" = "-" ]; then
- tmpf=`mktemp ${TMPDIR:-/tmp}/security.XXXXXXXXXX`
+ tmpf=`mktemp -t security`
cat > ${tmpf}
fi
OpenPOWER on IntegriCloud