diff options
Diffstat (limited to 'scripts/vyatta-delete-log-file.sh')
-rw-r--r-- | scripts/vyatta-delete-log-file.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/vyatta-delete-log-file.sh b/scripts/vyatta-delete-log-file.sh new file mode 100644 index 0000000..d0463dd --- /dev/null +++ b/scripts/vyatta-delete-log-file.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ -e /var/log/user/$1 ] +then + rm -f /var/log/user/$1 +else + echo "File does not exist" +fi |