Hello, I'd like to shutdown my linux workstation after a dump, but it 
shouldn't shutdown the workstation when a user is still logged in. 
However, my scripts do not seem to work when called from backuppc. 
However, it works when I call wrapper.sh from the shell by entering 
./wrapper.sh "HOSTNAME" as user backuppc.

Any ideas how to solve this?

Thanks, Ken


config exerpt:
$Conf{DumpPostUserCmd} = 'wrapper.sh $host';

wrapper.sh contains:
HOSTNAME=$1
ssh root@$HOSTNAME  'bash' < /etc/backuppc/shutdown.sh

shutdown.sh contains:
#!/bin/bash

# Read logged users
USERCOUNT=`who | wc -l`;
# No Shutdown if there are any users logged in
if (($USERCOUNT>0))
then exit
else shutdown -h now
fi
exit 0






------------------------------------------------------------------------------
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

Reply via email to