aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--share/templater/drupal8/Puppetfile32
-rwxr-xr-xshare/templater/drupal8/setup6
3 files changed, 38 insertions, 1 deletions
diff --git a/README.md b/README.md
index 098ad63..4fc44c1 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,6 @@ Create the project (requires [KVMX](https://kvmx.fluxo.info)):
Basic puppet configuration:
- puppet/bin/submodules
cp puppet/config/node/box.example.org.yaml puppet/config/node/drupal8.example.org.yaml
vim puppet/config/node/drupal8.example.org.yaml # set nodo::role to 'dev::drupal8'
diff --git a/share/templater/drupal8/Puppetfile b/share/templater/drupal8/Puppetfile
new file mode 100644
index 0000000..23d7f71
--- /dev/null
+++ b/share/templater/drupal8/Puppetfile
@@ -0,0 +1,32 @@
+mod "apache",
+ :git => "https://git.fluxo.info/puppet-apache"
+mod "augeas",
+ :git => "https://git.fluxo.info/puppet-augeas"
+mod "backup",
+ :git => "https://git.fluxo.info/puppet-backup"
+mod "backupninja",
+ :git => "https://git.fluxo.info/puppet-backupninja"
+mod "concat",
+ :git => "https://git.fluxo.info/puppet-concat"
+mod "cron",
+ :git => "https://git.fluxo.info/puppet-cron"
+mod "domain_check",
+ :git => "https://git.fluxo.info/puppet-domain_check"
+mod "exim",
+ :git => "https://git.fluxo.info/puppet-exim"
+mod "lsb",
+ :git => "https://git.fluxo.info/puppet-lsb"
+mod "nodo",
+ :git => "https://git.fluxo.info/puppet-nodo"
+mod "rsyslog",
+ :git => "https://git.fluxo.info/puppet-rsyslog"
+mod "shellprompt",
+ :git => "https://git.fluxo.info/shellprompt"
+mod "sshd",
+ :git => "https://git.fluxo.info/puppet-sshd"
+mod "stdlib",
+ :git => "https://git.fluxo.info/puppet-stdlib"
+mod "user",
+ :git => "https://git.fluxo.info/puppet-user"
+mod "tunnel",
+ :git => "https://git.fluxo.info/puppet-tunnel"
diff --git a/share/templater/drupal8/setup b/share/templater/drupal8/setup
index 29efcaa..59b930d 100755
--- a/share/templater/drupal8/setup
+++ b/share/templater/drupal8/setup
@@ -46,6 +46,12 @@ function templater_drupal8 {
cp $SHARE/drupal8/files/drupal.make.yml .
fi
+ if [ ! -e "Puppetfile" ]; then
+ cp $SHARE/drupal8/files/Puppetfile .
+ else
+ cp $SHARE/drupal8/files/Puppetfile Puppetfile.drupal8
+ fi
+
mkdir -p files config themes modules libraries
mkdir -p vendor
else