
C'est juste que le C majuscule, c'est chiant. darcs-hash:20020106220234-a279a-b16f7ef097291563defe5668b499fc6cf8b598f9.gz
15 lines
404 B
Bash
Executable file
15 lines
404 B
Bash
Executable file
#!/bin/zsh
|
|
#script shell par kif 01/10/00
|
|
|
|
LOG=/var/log/cransMisc/samba-master.log
|
|
master=`smbclient -N -L zamok |grep -A5 Master |grep CRANS |tail -c 6 `
|
|
|
|
if [ "$master" != 'ZAMOK' ];
|
|
then
|
|
echo -n `date` >> $LOG
|
|
echo " : le maitre est $master " >> $LOG
|
|
echo "Zamok n'est plus maitre ; je relance samba" >> $LOG
|
|
/id/samba restart >> $LOG 2>&1
|
|
#else
|
|
# echo zamok est encore maitre
|
|
fi
|