view deploy/vagrant/vagrant-provision.sh @ 1587:d8949733849d dockerise

Another rearrangement, to share provisioning scripts
author Chris Cannam
date Thu, 17 Aug 2017 11:55:29 +0100
parents extra/soundsoftware/scripted-deploy/vagrant/vagrant-provision.sh@d0d59d12db94
children c18460da6620
line wrap: on
line source
#!/bin/bash

#!!! still not covered:
# * cron jobs
# * https
# * web fonts
# * reposman scripts (and their API key setup, etc)
# * docgen script install
# * logrotate config (check against system one)

set -e

for f in /code-to-deploy/deploy/provision.d/[0-9]* ; do
    case "$f" in
        *~) ;;
        *) echo "Running provision script: $f"
           /bin/bash "$f";;
    esac
done