You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
938 B
36 lines
938 B
From a69b9119bde58b372acb1c3914ee90f2ed48afb8 Mon Sep 17 00:00:00 2001
|
|
From: Phil Sutter <psutter@redhat.com>
|
|
Date: Mon, 17 Sep 2018 11:39:50 +0200
|
|
Subject: [PATCH] iptables-apply: Use mktemp instead of tempfile
|
|
|
|
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
|
---
|
|
iptables/iptables-apply | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/iptables/iptables-apply b/iptables/iptables-apply
|
|
index 819ca4a459c42..a685b6bbcd7dc 100755
|
|
--- a/iptables/iptables-apply
|
|
+++ b/iptables/iptables-apply
|
|
@@ -111,7 +111,7 @@ if [[ ! -r "$FILE" ]]; then
|
|
exit 2
|
|
fi
|
|
|
|
-COMMANDS=(tempfile "$SAVE" "$RESTORE")
|
|
+COMMANDS=(mktemp "$SAVE" "$RESTORE")
|
|
|
|
for cmd in "${COMMANDS[@]}"; do
|
|
if ! command -v $cmd >/dev/null; then
|
|
@@ -122,7 +122,7 @@ done
|
|
|
|
umask 0700
|
|
|
|
-TMPFILE=$(tempfile -p iptap)
|
|
+TMPFILE=$(mktemp)
|
|
trap "rm -f $TMPFILE" EXIT HUP INT QUIT ILL TRAP ABRT BUS \
|
|
FPE USR1 SEGV USR2 PIPE ALRM TERM
|
|
|
|
--
|
|
2.24.0
|
|
|