forked from apel/ssm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsender.py
79 lines (59 loc) · 2.47 KB
/
sender.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
# Copyright (C) 2012 STFC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Script to run a sending SSM."""
from __future__ import print_function
import ssm.agents
from ssm import __version__, LOG_BREAK
import logging
from optparse import OptionParser
import os
try:
import ConfigParser
except ImportError:
import configparser as ConfigParser
def main():
"""Set up connection, send all messages and quit."""
ver = "SSM %s.%s.%s" % __version__
default_conf_location = '/etc/apel/sender.cfg'
op = OptionParser(description=__doc__, version=ver)
op.add_option('-c', '--config',
help=('location of config file, '
'default path: ' + default_conf_location),
default=default_conf_location)
op.add_option('-l', '--log_config',
help='DEPRECATED - location of logging config file (optional)',
default=None)
options, unused_args = op.parse_args()
# Deprecating functionality.
old_log_config_default_path = '/etc/apel/logging.cfg'
if (os.path.exists(old_log_config_default_path) or options.log_config is not None):
logging.warning('Separate logging config file option has been deprecated.')
# Check if config file exists using os.path.isfile function.
if os.path.isfile(options.config):
cp = ConfigParser.ConfigParser({'use_ssl': 'true'})
cp.read(options.config)
else:
print("Config file not found at", options.config)
exit(1)
ssm.agents.logging_helper(cp)
log = logging.getLogger('ssmsend')
log.info(LOG_BREAK)
log.info('Starting sending SSM version %s.%s.%s.', *__version__)
protocol = ssm.agents.get_protocol(cp, log)
log.info('Setting up SSM with protocol: %s', protocol)
brokers, project, token = ssm.agents.get_ssm_args(protocol, cp, log)
ssm.agents.run_sender(protocol, brokers, project, token, cp, log)
if __name__ == '__main__':
main()