Add rattail.deploy_machine_conf()
for basic machine-wide rattail.conf
This commit is contained in:
parent
faefb60cd6
commit
c0eed0e969
100
rattail_fabric2/deploy/rattail/rattail.conf.mako
Normal file
100
rattail_fabric2/deploy/rattail/rattail.conf.mako
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
## -*- mode: conf; -*-
|
||||||
|
|
||||||
|
${'#'}#####################################################################
|
||||||
|
#
|
||||||
|
# machine-wide rattail config
|
||||||
|
#
|
||||||
|
${'#'}#####################################################################
|
||||||
|
|
||||||
|
|
||||||
|
${'#'}#############################
|
||||||
|
# rattail
|
||||||
|
${'#'}#############################
|
||||||
|
|
||||||
|
[rattail]
|
||||||
|
timezone.default = ${timezone}
|
||||||
|
|
||||||
|
[rattail.config]
|
||||||
|
configure_logging = true
|
||||||
|
|
||||||
|
[rattail.mail]
|
||||||
|
smtp.server = localhost
|
||||||
|
templates = rattail:templates/mail
|
||||||
|
default.from = root
|
||||||
|
default.to = root
|
||||||
|
|
||||||
|
|
||||||
|
${'#'}#############################
|
||||||
|
# logging
|
||||||
|
${'#'}#############################
|
||||||
|
|
||||||
|
[loggers]
|
||||||
|
keys = root, exc_logger, beaker, txn, sqlalchemy, django_db, flufl_bounce, requests
|
||||||
|
|
||||||
|
[handlers]
|
||||||
|
keys = file, console, email
|
||||||
|
|
||||||
|
[formatters]
|
||||||
|
keys = generic, console
|
||||||
|
|
||||||
|
[logger_root]
|
||||||
|
handlers = file, console
|
||||||
|
level = DEBUG
|
||||||
|
|
||||||
|
[logger_exc_logger]
|
||||||
|
qualname = exc_logger
|
||||||
|
handlers = email
|
||||||
|
level = ERROR
|
||||||
|
|
||||||
|
[logger_beaker]
|
||||||
|
qualname = beaker
|
||||||
|
handlers =
|
||||||
|
level = INFO
|
||||||
|
|
||||||
|
[logger_txn]
|
||||||
|
qualname = txn
|
||||||
|
handlers =
|
||||||
|
level = INFO
|
||||||
|
|
||||||
|
[logger_sqlalchemy]
|
||||||
|
qualname = sqlalchemy.engine
|
||||||
|
handlers =
|
||||||
|
# level = INFO
|
||||||
|
|
||||||
|
[logger_django_db]
|
||||||
|
qualname = django.db.backends
|
||||||
|
handlers =
|
||||||
|
level = INFO
|
||||||
|
|
||||||
|
[logger_flufl_bounce]
|
||||||
|
qualname = flufl.bounce
|
||||||
|
handlers =
|
||||||
|
level = WARNING
|
||||||
|
|
||||||
|
[logger_requests]
|
||||||
|
qualname = requests
|
||||||
|
handlers =
|
||||||
|
# level = WARNING
|
||||||
|
|
||||||
|
[handler_file]
|
||||||
|
class = handlers.WatchedFileHandler
|
||||||
|
args = ('rattail.log', 'a', 'utf_8')
|
||||||
|
formatter = generic
|
||||||
|
|
||||||
|
[handler_console]
|
||||||
|
class = StreamHandler
|
||||||
|
args = (sys.stderr,)
|
||||||
|
formatter = console
|
||||||
|
|
||||||
|
[handler_email]
|
||||||
|
class = handlers.SMTPHandler
|
||||||
|
args = ('localhost', 'root', ['root'], "[Rattail] Logging")
|
||||||
|
formatter = generic
|
||||||
|
level = ERROR
|
||||||
|
|
||||||
|
[formatter_generic]
|
||||||
|
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(funcName)s: %(message)s
|
||||||
|
datefmt = %Y-%m-%d %H:%M:%S
|
||||||
|
|
||||||
|
[formatter_console]
|
||||||
|
format = %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
|
|
@ -56,6 +56,15 @@ def bootstrap_rattail(c, home='/var/lib/rattail', uid=None, shell='/bin/bash'):
|
||||||
deploy(c, 'filemon', '/srv/rattail/init/filemon', use_sudo=True)
|
deploy(c, 'filemon', '/srv/rattail/init/filemon', use_sudo=True)
|
||||||
|
|
||||||
|
|
||||||
|
def deploy_machine_conf(c, timezone='America/Chicago'):
|
||||||
|
"""
|
||||||
|
Deploy the standard machine-wide ``rattail.conf`` file.
|
||||||
|
"""
|
||||||
|
mkdir(c, '/etc/rattail', use_sudo=True)
|
||||||
|
deploy(c, 'rattail/rattail.conf.mako', '/etc/rattail/rattail.conf', use_sudo=True,
|
||||||
|
context={'timezone': timezone})
|
||||||
|
|
||||||
|
|
||||||
def delete_email_recipients(c, dbname):
|
def delete_email_recipients(c, dbname):
|
||||||
"""
|
"""
|
||||||
Purge all email recipient settings for the given database.
|
Purge all email recipient settings for the given database.
|
||||||
|
|
Loading…
Reference in a new issue