Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
08-17-2012, 12:19 AM
|
#1
|
Member
Registered: Jun 2012
Posts: 68
Rep: 
|
Need script to install .rpm packages with su login thru ssh on 20 suse computers
#!/bin/bash
sshsudo -D-c-r-v BATMAN-1.sun.com
BATMAN-2
BATMAN-3
BATMAN-4
BATMAN-5
BATMAN-6
BATMAN-7
BATMAN-8
BATMAN-9
BATMAN-10
rpm -Uvh --force --nodeps /apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm
exit
|
|
|
08-17-2012, 12:53 AM
|
#2
|
LQ Guru
Registered: Sep 2009
Location: Perth
Distribution: Arch
Posts: 10,042
|
Is this a question or a statement? You need a script and have presented one. What else is there to do?
|
|
|
08-17-2012, 01:03 AM
|
#3
|
Member
Registered: Jun 2012
Posts: 68
Original Poster
Rep: 
|
It does not run...i need to understand whats the mistake am making. I know it is small and probably silly cause......
|
|
|
08-17-2012, 01:05 AM
|
#4
|
Member
Registered: Jun 2012
Posts: 68
Original Poster
Rep: 
|
i know my ssh command is right and my rpm command is right. the other thing is that i am to use a loop but i did not see the need. Hope I made my self clear on the two parts: mistake in script and is loop required?
|
|
|
08-17-2012, 01:30 AM
|
#5
|
LQ Guru
Registered: Sep 2009
Location: Perth
Distribution: Arch
Posts: 10,042
|
Are you receiving an error?
I have not used sshsudo previously, but having a quick search on the net it seems to imply the server names should be comma separated.
Also, I would place your path (passed to rpm) in quotes other wise the * will be expanded and may not give you what you want. Examples also show the command as coming straight after
the server names and not on its own line.
So not sure if any of your switches change the default behaviour, but this would seem to be some things to look at.
|
|
|
08-17-2012, 02:06 AM
|
#6
|
Member
Registered: Jun 2012
Posts: 68
Original Poster
Rep: 
|
#!/bin/bash
sshsudo -D-c-r-v
BATMAN-1.sun.com rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-2 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-3 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-4 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-5 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-6 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-7 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-8 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-9 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
BATMAN-10 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
exit
Do you mean like this. And...hence I do not require to loop it right?
|
|
|
08-17-2012, 03:20 AM
|
#7
|
LQ Guru
Registered: Sep 2009
Location: Perth
Distribution: Arch
Posts: 10,042
|
Does that work?
But no, my thinking was more along the lines:
Code:
#!/bin/bash
sshsudo -D -c -r -v BATMAN-1.sun.com,BATMAN-2,BATMAN-3,BATMAN-4 rpm -Uvh --force --nodeps "/apps/rpms/EDGE-5.5.2-8/edge-3rdParty-5*.rpm edge-5*.rpm edge-docs-5*.rpm"
|
|
|
All times are GMT -5. The time now is 11:08 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|