2025-03-24 09:27:20 +01:00

16 lines
461 B
Bash

#!/bin/bash
# Ip passée en paramètre
ip=$1
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 "cd $workdir ; bash $workdir/createGroups.sh ; bash $workdir/createUsers.sh ; rm -R $workdir"