aboutsummaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorFabien COMBERNOUS <Dan33l@users.noreply.github.com>2019-01-24 23:18:58 +0100
committerGitHub <noreply@github.com>2019-01-24 23:18:58 +0100
commitd5d12d754f9619a2260ecad223b5a5d4fa8fdd1b (patch)
tree874142bcc565105729bfcfd82d856604c1a9868b /.travis
parent3612961ef7599afe37e224271629eb721965536c (diff)
parentde09602e9ec297aab695714aff39d740c94606b0 (diff)
downloadpuppet-ferm-d5d12d754f9619a2260ecad223b5a5d4fa8fdd1b.tar.gz
puppet-ferm-d5d12d754f9619a2260ecad223b5a5d4fa8fdd1b.tar.bz2
Merge pull request #36 from voxpupuli/modulesync
modulesync 2.5.1 and drop Puppet4
Diffstat (limited to '.travis')
-rw-r--r--.travis/setup.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis/setup.sh b/.travis/setup.sh
new file mode 100644
index 0000000..ae1a043
--- /dev/null
+++ b/.travis/setup.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+# THIS FILE IS MANAGED BY MODULESYNC
+
+rm -f Gemfile.lock
+if [ "${PUPPET_VERSION}" = '~> 4.0' ]; then
+ gem install bundler -v '< 2' --no-rdoc --no-ri;
+else
+ gem update --system;
+ gem update bundler;
+ bundle --version;
+fi