summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-07-13 19:33:11 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2021-07-13 19:33:11 +0200
commitdb66327da15391a95ef8b879398178b1dafd8a4e (patch)
treeeac0f6c570154ac667dab8b2517b364459f805e1
parentAdd pacman hooks to gandalf. (diff)
downloadwebdav_server-db66327da15391a95ef8b879398178b1dafd8a4e.tar.gz
webdav_server-db66327da15391a95ef8b879398178b1dafd8a4e.tar.xz
Spice up run script.
-rwxr-xr-xrun20
1 files changed, 18 insertions, 2 deletions
diff --git a/run b/run
index b267ab7..c9e150c 100755
--- a/run
+++ b/run
@@ -1,4 +1,20 @@
#!/bin/bash
-sudo /opt/puppetlabs/bin/puppet apply manifests \
- --modulepath=/etc/puppetlabs/code/environments/production/modules:modules
+# Needed on ubuntu, since this path is not set for root
+# Arch installs puppet in /usr/bin/puppet.
+export PATH="/opt/puppetlabs/bin/puppet:$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
+
+sudo puppet apply manifests \
+ --modulepath="${modpath}:modules"