forked from aurelien.plancke/ScodocTestClient
12 lines
233 B
Bash
Executable File
12 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$#" -ne 3 ];
|
|
then
|
|
echo "Pas assez d'arguments"
|
|
exit 2
|
|
fi
|
|
ssh $1 /bin/bash<< EOF
|
|
cd /opt/scodoc/Products/ScoDoc/
|
|
scotests/scointeractive.sh -r ${2} scotests/${3}
|
|
EOF
|
|
ssh $1 'systemctl restart ScoDoc.service'
|