mirror of
https://github.com/bspeice/metrik
synced 2024-11-04 22:48:11 -05:00
Another update to the cron scripts
This commit is contained in:
parent
1ba75cab31
commit
8fb5fa9c32
@ -1,2 +1,2 @@
|
||||
__version__ = '0.3.0'
|
||||
__version__ = '0.3.1'
|
||||
__release__ = __version__
|
@ -4,6 +4,8 @@ from datetime import datetime
|
||||
from argparse import ArgumentParser
|
||||
from dateutil.parser import parse
|
||||
from six import StringIO
|
||||
from subprocess import check_output
|
||||
from os import path
|
||||
|
||||
from metrik.conf import get_config
|
||||
from metrik.flows.rates_flow import LiborFlow
|
||||
@ -23,15 +25,24 @@ def run_flow(flow_class, present, live):
|
||||
def build_cron_file():
|
||||
EXEC = 'metrik'
|
||||
FLOW_FLAG = '-f'
|
||||
USER = 'root'
|
||||
|
||||
metrik_command_location = path.dirname(check_output(['which', 'metrik']))
|
||||
cron_header = '''# cron.d entries for metrik
|
||||
|
||||
SHELL=/bin/sh
|
||||
PATH={}
|
||||
|
||||
'''.format(metrik_command_location)
|
||||
cron_strings = []
|
||||
for flow_name, flow_class in flows.items():
|
||||
cron_string = flow_class.get_schedule().get_cron_string()
|
||||
cron_strings.append(
|
||||
cron_string + ' ' + EXEC + ' ' + FLOW_FLAG + ' ' + flow_name
|
||||
cron_string + ' ' + USER + ' ' + EXEC + ' ' +
|
||||
FLOW_FLAG + ' ' + flow_name
|
||||
)
|
||||
|
||||
return '\n'.join(cron_strings) + '\n'
|
||||
return cron_header + '\n'.join(cron_strings) + '\n'
|
||||
|
||||
|
||||
def list_flows():
|
||||
|
@ -14,5 +14,4 @@ class BatchTest(TestCase):
|
||||
|
||||
def test_cron_string(self):
|
||||
cron_string = build_cron_file()
|
||||
assert len(cron_string.split('\n')) == len(flows) + 1
|
||||
assert cron_string[-1] == '\n'
|
||||
|
Loading…
Reference in New Issue
Block a user