8 lines
172 B
Bash
Executable file
8 lines
172 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/whokfet.py "$@"
|