aboutsummaryrefslogtreecommitdiffstats
path: root/ci.d/yum
diff options
context:
space:
mode:
Diffstat (limited to 'ci.d/yum')
-rw-r--r--ci.d/yum12
1 files changed, 12 insertions, 0 deletions
diff --git a/ci.d/yum b/ci.d/yum
new file mode 100644
index 0000000..27607c7
--- /dev/null
+++ b/ci.d/yum
@@ -0,0 +1,12 @@
+#!/usr/bin/env sh
+
+# yum_upgrade
+yum_upgrade() {
+ lxc_do yum update
+}
+
+# yum_install $PACKAGES
+yum_install() {
+ lxc_do yum install -y "$@"
+}
+