8 lines
154 B
Bash
Executable file
8 lines
154 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ `hostname` != "vo" ]; then
|
|
echo "Merci d'executer ce script sur vo."
|
|
exit 1
|
|
fi
|
|
|
|
sudo -u root /usr/scripts/gestion/tools/who2b.py "$@"
|