From debd2336c10eb68d8e165245f48102ded43c7867 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 8 Nov 1999 20:21:46 +0000 Subject: use /var/run/confirm for interactive, not /tmp/confirm --- rc.d/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rc.d/rc') diff --git a/rc.d/rc b/rc.d/rc index cc86b500..13892672 100755 --- a/rc.d/rc +++ b/rc.d/rc @@ -21,8 +21,8 @@ export runlevel previous # See if we want to be in user confirmation mode if [ "$previous" = "N" ]; then - if grep -i confirm /proc/cmdline >/dev/null || [ -f /tmp/confirm ] ; then - rm -f /tmp/confirm + if grep -i confirm /proc/cmdline >/dev/null || [ -f /var/run/confirm ] ; then + rm -f /var/run/confirm CONFIRM=yes echo "Entering interactive startup" else -- cgit