-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlcsoft_rpms.sh
executable file
·28 lines (28 loc) · 991 Bytes
/
lcsoft_rpms.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/bash
###
### Author: [email protected]
### Date: Apr 18, 2020
### Desc: Install lcsoft RPMs on a vanilla SL box.
### Note: epel should not be installed. If it is installed,
### it should be uninstalled. If you have installed
### any epel packages, there may be yum conflicts that
### must be resolved.
###
### Based on:
###
### https://wiki.ligo.org/Computing/ScientificLinux7
###
mkdir -p /usr/local/src
cd /usr/local/src
wget http://software.ligo.org/lscsoft/scientific/7/x86_64/production/l/lscsoft-production-config-1.3-1.el7.noarch.rpm
yum install -y lscsoft-production-config-1.3-1.el7.noarch.rpm
yum clean all && yum makecache
yum update -y
yum install -y lscsoft-backports-config
yum install -y lscsoft-backports-debug-config
yum install -y lscsoft-epel-config
yum install -y lscsoft-grid-config
yum install -y lscsoft-production-debug-config
yum clean all && yum makecache
yum update -y
yum install -y lscsoft-all