diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-11-01 11:32:45 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-11-01 11:32:45 -0200 |
commit | 489a96bd6e3507362e597776b2559658b2f93661 (patch) | |
tree | a713946fcd94533e732600d127998799a466a1f2 | |
parent | a01424fd04145bed4170c18d1e61ff83b15bdd2b (diff) | |
download | templater-489a96bd6e3507362e597776b2559658b2f93661.tar.gz templater-489a96bd6e3507362e597776b2559658b2f93661.tar.bz2 |
Drupal 8: Puppetfile
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | share/templater/drupal8/Puppetfile | 32 | ||||
-rwxr-xr-x | share/templater/drupal8/setup | 6 |
3 files changed, 38 insertions, 1 deletions
@@ -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 |