Sha256: 8dd57ed0326463ed1c5dd87674f508ac7bff0f0ced4a2f7dbb50b647825c5cda

Contents?: true

Size: 635 Bytes

Versions: 3

Compression:

Stored size: 635 Bytes

Contents

#!/bin/sh

#NOTE: you can also call 
#      /usr/local/ec2onrails/bin/exec_runner
#      to run a script under a specific role
#      see the file for details

cd /mnt/app/current

if test -e /mnt/app/current/script/cron/weekly; then 
   if test -f /mnt/app/current/script/cron/weekly; then 
      sudo -u app /usr/local/ec2onrails/bin/rails_env script/cron/weekly;
   else 
      sudo -u app /usr/local/ec2onrails/bin/rails_env script/cron/weekly/*;
   fi
   exit 0;
fi

#DEPRECATED: just for old usage....
if test -e /mnt/app/current/script/weekly
then 
   sudo -u app /usr/local/ec2onrails/bin/rails_env script/weekly
   exit 0;
fi

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
ScholarNexus-ec2onrails-0.9.10 server/files/etc/cron.weekly/app
ScholarNexus-ec2onrails-0.9.11 server/files/etc/cron.weekly/app
skippy-ec2onrails-0.9.11 server/files/etc/cron.weekly/app