Link to home
Start Free TrialLog in
Avatar of Ryman1
Ryman1

asked on

Convert a Redhat Script to Debian

I would like to convert to following script to use in another environment - Debian.

Yum is not available in Debian and I'm not sure about the rest.
#!/bin/bash
for i in $(seq 1 10)
do
  ip=192.168.1.$i
  host=$(ssh $ip -C hostname 2>&1) 
  echo "====================================================="
  echo "Host $host at IP $ip returned the follow result"
  echo "====================================================="
  ssh $ip "yum list updates" 
done > report_file 2>&1
 
# do something with 'report_file' here...

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Tintin
Tintin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try replacing line 9 with this:

ssh $ip "apt-get -s upgrade"
Wait...

Might will probably want to run 'apt-get update' first if you don't already via Cron.  It grabs the updated package lists.
Avatar of Ryman1
Ryman1

ASKER

Thanks Syngin9 - that get's me much further.

So here is the current  script, and it works for the 1st IP, but then seems to fail on the next and is looking for password again. For each machine, I am entering the password manually as it logs on, and then again for sudo, but not sure why it fails on the subsequent IP's.

Here is the output from the script:

=====================================================================
Host ops1corp at IP 192.168.1.236 has the following updates available
=====================================================================
The following packages have been kept back:
  ssl-cert
The following packages will be upgraded:
  apache2 apache2-mpm-worker apache2-utils apache2.2-common bsdutils bzip2
  e2fslibs e2fsprogs libblkid1 libbz2-1.0 libcomerr2 libgnutls13 libkrb53
  libopenssl-ruby1.8 libpcre3 libpq5 libsnmp-base libsnmp9 libss2 libuuid1
  libwrap0 libxml2 linux-libc-dev mount mysql-client-5.0 mysql-server
  mysql-server-5.0 nagios-plugins nagios-plugins-basic nagios-plugins-standard
  python2.5 python2.5-minimal samba-common smbclient snmp ssh tar util-linux
  util-linux-locales
39 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
 
=====================================================================
Host ops2corp at IP 192.168.1.237 has the following updates available
=====================================================================
Password:
 
=====================================================================
www1stg at IP 192.168.1.238 has the following updates available
=====================================================================
Password:

#!/bin/bash
 
# loop that checks each system in iprange specified
for i in $(seq 236 238)
do
  ip=192.168.1.$i
  host=$(ssh $ip -C hostname 2>&1)
  echo " "
  echo "====================================================================="
  echo "Host $host at IP $ip has the following updates available"
  echo "====================================================================="
  ssh $ip "sudo apt-get -s upgrade"
done > updates 2>&1

Open in new window

Avatar of Ryman1

ASKER

How can I rewrite this second script so that it prompts me for the password on the screen (instead of printing it in the report) and continues down the line for each system?