addhost update from eduid

This commit is contained in:
Leif Johansson 2018-05-04 17:24:19 +02:00
parent 9e0b5764a4
commit 3b9ebcfe78

15
addhost
View file

@ -1,4 +1,4 @@
#!/bin/sh -x
#!/bin/sh
cmd_hostname=""
cmd_do_bootstrap="no"
@ -49,14 +49,9 @@ if [ ! -d $cmd_hostname ]; then
./bump-tag
fi
SSH_ARGS=""
if [ "x${COSMOS_JUMPHOST}" != "x" ]; then
SSH_ARGS="$SSH_ARGS -o \"ProxyCommand ssh root@${COSMOS_JUMPHOST} -W %h:%p\""
fi
if [ "$cmd_do_bootstrap" = "yes" ]; then
scp "$SSH_ARGS" apt/cosmos_1.5-1_all.deb apt/bootstrap-cosmos.sh root@$cmd_hostname:
ssh "$SSH_ARGS" root@$cmd_hostname ./bootstrap-cosmos.sh $cmd_fqdn $rrepo $rtag
ssh root@$cmd_hostname cosmos update
ssh root@$cmd_hostname cosmos apply
scp apt/cosmos_1.5-1_all.deb apt/bootstrap-cosmos.sh root@$cmd_hostname:
ssh root@$cmd_hostname ./bootstrap-cosmos.sh $cmd_fqdn $rrepo $rtag
ssh root@$cmd_hostname cosmos -v update
ssh root@$cmd_hostname cosmos -v apply
fi