8 lines
179 B
Bash
Executable file
8 lines
179 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ `hostname` != "zamok" ]; then
|
|
echo "Merci d'exécuter ce script sur zamok."
|
|
exit 1
|
|
fi
|
|
|
|
exec sudo -u respbats /usr/scripts/gestion/tools/whosthere.py kfet "$@"
|