aboutsummaryrefslogtreecommitdiffstats
path: root/ci.d/yum
blob: d5a63ba1a1d718b9f06e976c333143e5176e329c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env sh

# yum_install $PACKAGES
yum_install() {
	lxc_do yum install -y "$@"
}

# yum_install_epel
yum_install_epel() {
	lxc_do curl -O http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
	lxc_do rpm -ivh epel-release-latest-7.noarch.rpm
}

# yum_upgrade
yum_upgrade() {
	lxc_do yum update
}