#!/bin/bash
while read P
do
ssh "$P" /usr/lib/update-notifier/apt-check -p &&
sudo apt-get upgrade --dry-run
done < ~/iplist1
結果は次のようになります:
Server1 name
possible updates
Server2 name
possible updates
答え1
これはどう?
#!/bin/bash
while IFS='' read -r p || [ -n "$p" ]; do
ssh "$p" bash -c '\
hostname &&
[[ -z "$(/usr/lib/update-notifier/apt-check -p)" ]] &&
echo "No updates available." ||
( echo ; apt-get upgrade --dry-run )
'
echo
done < ~/iplist1
apt-get --dry-run
実行にルート権限は必要ないので、大きな問題が解消されます。