7 lines
119 B
Text
7 lines
119 B
Text
|
hosts="eiche"
|
||
|
|
||
|
for host in $hosts; do
|
||
|
ssh root@$host "apt-get update"
|
||
|
ssh root@$host "apt-get dist-upgrade"
|
||
|
done
|