Last change
on this file since 2156 was
204,
checked in by presbrey, 18 years ago
|
gems install script
rpms install script
user import signup script
suexec SELinux error bug fix
|
File size:
335 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | # |
---|
3 | # Retrieve package list from scripts.mit.edu |
---|
4 | # Install them with yum |
---|
5 | # |
---|
6 | # Joe Presbrey <presbrey@mit.edu> |
---|
7 | # |
---|
8 | # Skip openafs (custom built), kernel (pedantic), and pubkeys. |
---|
9 | |
---|
10 | ssh root@scripts.mit.edu rpm -qa --qf '%{name}.%{arch}\\n' | grep -v openafs | grep -v kernel | grep -v pubkey > rpms.log |
---|
11 | |
---|
12 | yum install `cat rpms.log` |
---|
Note: See
TracBrowser
for help on using the repository browser.