view extra/soundsoftware/scripted-deploy/vagrant/vagrant-provision.sh @ 1586:d0d59d12db94 dockerise

Add some cron scripts, update
author Chris Cannam
date Wed, 16 Aug 2017 16:58:22 +0100
parents f26dc3004b3f
children
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 /vagrant-code/extra/soundsoftware/scripted-deploy/vagrant/provision.d/[0-9]* ; do
    case "$f" in
        *~) ;;
        *) echo "Running provision script: $f"
           /bin/bash "$f";;
    esac
done