test avec ;

This commit is contained in:
yann.lereuille 2025-03-24 09:27:20 +01:00
parent d025522b94
commit f9ee969d21

View File

@ -6,9 +6,10 @@ user=root
workdir=/$user/deploy
ssh $user@$ip "mkdir -p $workdir" 2> /dev/null
scp "./createGroups.sh" "./logins.csv" "Users.csv" "createUsers.sh" $user@$ip:$workdir
ssh $user@$ip << EOF
cd $workdir
bash $workdir/createGroups.sh
bash $workdir/createUsers.sh
rm -R $workdir
EOF
# ssh $user@$ip << EOF
# cd $workdir
# bash $workdir/createGroups.sh
# bash $workdir/createUsers.sh
# rm -R $workdir
# EOF
ssh $user@$ip "cd $workdir ; bash $workdir/createGroups.sh ; bash $workdir/createUsers.sh ; rm -R $workdir"