summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
Diffstat (limited to 'run')
-rwxr-xr-xrun26
1 files changed, 0 insertions, 26 deletions
diff --git a/run b/run
deleted file mode 100755
index 789d1b6..0000000
--- a/run
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-# Needed on ubuntu, since this path is not set for root
-# Arch installs puppet in /usr/bin/puppet.
-export PATH="/opt/puppetlabs/bin/:$PATH"
-
-osid=$(awk -F= '/^ID=/ { print $2 }' /etc/os-release)
-
-# This is the WRONG way to do it, but it sholud work for now
-case $osid in
- ubuntu)
- modpath=/etc/puppetlabs/code/environments/production/modules
- ;;
- arch)
- modpath=/etc/puppetlabs/code/modules/
- ;;
-esac
-
-set -x
-
-sudo env PATH="/opt/puppetlabs/bin/:$PATH" \
- puppet apply \
- --modulepath="$PWD/modules:${modpath}" \
- manifests \
- --verbose \
- "$@"