8 lines
166 B
Bash
Executable file
8 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ `hostname` != "zamok" ]; then
|
|
echo "Merci d'executer ce script sur zamok."
|
|
exit 1
|
|
fi
|
|
|
|
sudo -u respbats /usr/scripts/gestion/tools/whosthere.py 4j
|