blob: fa374bcd647948fb8eeab07dfb8af33450f3bc1a (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
#
# This resets the temporary directory to /tmp on the floppy in the
# case where it's been changed during a previous 'setup' run. This
# should be done before $TMP is cleared.
#
TMPLINK="`LC_ALL=C /bin/ls -l /var/log/setup/tmp | tr -s ' ' | cut -f 11 -d ' '`"
if [ -L /var/log/setup/tmp -a ! "$TMPLINK" = "/tmp" ]; then
( cd /var/log/setup
rm tmp
ln -sf /tmp tmp )
fi
|