Add basic standard datasync check scripts
This commit is contained in:
parent
7500202af0
commit
70c5d661a3
3 changed files with 53 additions and 0 deletions
|
@ -75,3 +75,16 @@ def disable_emails(c, dbname):
|
|||
Disable all emails for the given database.
|
||||
"""
|
||||
postgresql.sql(c, "update setting set value = 'false' where name like 'rattail.mail.%.enabled';", database=dbname)
|
||||
|
||||
|
||||
def deploy_datasync_checks(c, envroot, **kwargs):
|
||||
"""
|
||||
Deploy the standard datasync (queue, watcher) check scripts.
|
||||
"""
|
||||
envroot = envroot.rstrip('/')
|
||||
context = kwargs.pop('context', {})
|
||||
context['envroot'] = envroot
|
||||
deploy(c, 'rattail/check-datasync-queue.mako', '{}/app/check-datasync-queue'.format(envroot),
|
||||
context=context, **kwargs)
|
||||
deploy(c, 'rattail/check-datasync-watchers.mako', '{}/app/check-datasync-watchers'.format(envroot),
|
||||
context=context, **kwargs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue