Changeset a9bbee5 in rattail-fabric2
- Timestamp:
- 11/27/2022 12:47:39 PM (2 months ago)
- Branches:
- master
- Children:
- 1fedc31
- Parents:
- ebf94fb
- Location:
- rattail_fabric2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
rattail_fabric2/deploy/luigi/cron-overnight.sh.mako
rebf94fb ra9bbee5 3 3 cd ${envroot} 4 4 5 RATTAIL="bin/rattail --config=app/cron.conf" 5 export RATTAIL_CONFIG_FILES=${overnight_conf} 6 6 7 $RATTAILovernight -k ${automation.lower()} <%text>\</%text>7 bin/rattail overnight -k ${automation.lower()} <%text>\</%text> 8 8 --no-versioning <%text>\</%text> 9 9 % if email_key is not Undefined and email_key: -
rattail_fabric2/deploy/luigi/restart-overnight.sh.mako
rebf94fb ra9bbee5 3 3 cd ${envroot} 4 4 5 RATTAIL="bin/rattail --config=app/cron.conf" 5 export RATTAIL_CONFIG_FILES=${overnight_conf} 6 6 7 $RATTAILovernight -k ${automation.lower()} <%text>\</%text>7 bin/rattail overnight -k ${automation.lower()} <%text>\</%text> 8 8 --no-versioning <%text>\</%text> 9 9 % if email_key is not Undefined and email_key: -
rattail_fabric2/luigi.py
rebf94fb ra9bbee5 75 75 def install_overnight_script(c, envroot, user='rattail', automation='All', 76 76 email_key=None, 77 luigi=False, cron=True, restart=True): 77 luigi=False, 78 cron=True, cron_conf='app/cron.conf', 79 restart=True, restart_conf='app/silent.conf'): 78 80 """ 79 81 Install an overnight automation script … … 98 100 use_sudo=True, owner=user, mode='0755', 99 101 context={'envroot': envroot, 102 'overnight_conf': cron_conf, 100 103 'automation': automation, 101 104 'email_key': email_key}) … … 109 112 context={'envroot': envroot, 110 113 'appdir': appdir, 114 'overnight_conf': restart_conf, 111 115 'automation': automation, 112 116 'email_key': email_key})
Note: See TracChangeset
for help on using the changeset viewer.