From 6e89a7e1723904d520beba56bceb565e5129f65b Mon Sep 17 00:00:00 2001 From: Seb Bacon Date: Mon, 16 Jul 2012 11:20:11 +0100 Subject: Run optional "post_install" script --- script/rails-post-deploy | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'script') diff --git a/script/rails-post-deploy b/script/rails-post-deploy index 193d0bbec..6100bb1d0 100755 --- a/script/rails-post-deploy +++ b/script/rails-post-deploy @@ -96,6 +96,12 @@ if [ -n "$OPTION_THEME_URL" ] then echo "Installing $OPTION_THEME_URL using deprecated THEME_URL..." script/plugin install --force $OPTION_THEME_URL + NAME=`sed -re 's/.*\/(.*)\.git.?/\1/'` + POST_INSTALL="vendor/plugins/$NAME/post_install.rb" + if [ -e $POST_INSTALL ] + then + script/runner $POST_INSTALL + fi fi # upgrade database -- cgit v1.2.3 From 7aeb616b07d5bd16af62b8139d2a0908f065f0e2 Mon Sep 17 00:00:00 2001 From: Seb Bacon Date: Mon, 16 Jul 2012 11:56:55 +0100 Subject: A dumb script to generate a crontab --- script/make-crontab | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 script/make-crontab (limited to 'script') diff --git a/script/make-crontab b/script/make-crontab new file mode 100755 index 000000000..1b4fbabbd --- /dev/null +++ b/script/make-crontab @@ -0,0 +1,16 @@ +#!/usr/bin/env python +import re + +mailto = "recipient-of-any-errors@localhost" +user = "user-to-run-as" +location = "/path/to/alaveteli" + +template = open("config/crontab.ugly").read() +template = re.sub(r"MAILTO=.*", "MAILTO=%s" % mailto, template) +template = template.replace("!!(*= $user *)!!", user) +template = re.sub(r"/data/vhost/.*/script", location + "/script", template) + +print template + + + -- cgit v1.2.3