12 lines
316 B
Bash
12 lines
316 B
Bash
#!/bin/bash
|
|
|
|
echo "Waiting 1hr to allow user to cancel shutdown"
|
|
sleep 1h
|
|
|
|
if [ `ps -ef | grep vzdump | wc -l` -eq 1 ]; then
|
|
echo "Triggering scheduled post-backup shutdown"
|
|
/usr/sbin/shutdown -h now
|
|
else
|
|
echo "Automatic shutdown not triggered due to concurrent backup task"
|
|
exit 2
|
|
fi |