aboutsummaryrefslogblamecommitdiffstats
path: root/ci.d/apt-get
blob: 5394f63f3a361e2b17f067388abbefca9e73f492 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                      
#!/usr/bin/env sh

# apt_get_upgrade
apt_get_upgrade() {
	lxc_do apt-get update
	lxc_do apt-get upgrade -y
	lxc_do apt-get dist-upgrade -y
}

# apt_get_install $PACKAGES
apt_get_install() {
	lxc_do apt-get install -y "$@"
}