This repository has been archived by the owner on Nov 2, 2019. It is now read-only.
forked from shinken-solutions/shinken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
571 lines (492 loc) · 19.8 KB
/
setup.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
#!/usr/bin/env python
#Copyright (C) 2009-2011 :
# Gabes Jean, [email protected]
# Gerhard Lausser, [email protected]
# Hartmut Goebel <[email protected]>
#First version of this file from Maximilien Bersoult
#
#This file is part of Shinken.
#
#Shinken is free software: you can redistribute it and/or modify
#it under the terms of the GNU Affero General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
#Shinken is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU Affero General Public License for more details.
#
#You should have received a copy of the GNU Affero General Public License
#along with Shinken. If not, see <http://www.gnu.org/licenses/>.
# Shinken requires Python 2.4, but does not support Python 3.x yet.
import sys
try:
python_version = sys.version_info
except:
python_version = (1,5)
if python_version < (2, 4):
sys.exit("Shinken require as a minimum Python 2.4.x, sorry")
elif python_version >= (3,):
sys.exit("Shinken is not yet compatible with Python3k, sorry")
from setuptools import setup, find_packages
from glob import glob
import os
import itertools
import ConfigParser
try:
import pwd
import grp
except ImportError:
# assume non-unix platform
pass
DEFAULT_OWNER = 'shinken'
DEFAULT_GROUP = 'shinken'
from distutils import log
from distutils.core import Command
from distutils.command.build import build as _build
from distutils.command.install import install as _install
from distutils.util import change_root
from distutils.errors import DistutilsOptionError
class build(_build):
sub_commands = _build.sub_commands + [
('build_config', None),
]
user_options = _build.user_options + [
('build-config', None, 'directory to build the config files to'),
]
def initialize_options(self):
_build.initialize_options(self)
self.build_config = None
def finalize_options (self):
_build.finalize_options(self)
if self.build_config is None:
self.build_config = os.path.join(self.build_base, 'etc')
class install(_install):
sub_commands = _install.sub_commands + [
( 'install_config', None ),
]
user_options = _install.user_options + [
( 'etc-path=', None, 'read-only single-machine data' ),
( 'var-path=', None, 'modifiable single-machine data' ),
( 'run-path=', None, 'PID files' ),
( 'log-path=', None, 'LOG files' ),
( 'plugins-path=', None, 'program executables' ),
( 'owner=', None, (
'change owner for etc/*, var, run and log folders (default: %s)' % DEFAULT_OWNER
)
),
( 'group=', None, (
'change group for etc/*, var, run and log folders (default: %s)' % DEFAULT_GROUP
)
),
]
def initialize_options(self):
_install.initialize_options(self)
self.etc_path = None
self.var_path = None
self.run_path = None
self.log_path = None
self.plugins_path = None
self.owner = None
self.group = None
def finalize_options(self):
_install.finalize_options(self)
if self.etc_path is None:
self.etc_path = default_paths['etc']
if self.var_path is None:
self.var_path = default_paths['var']
if self.run_path is None:
self.run_path = default_paths['run']
if self.log_path is None:
self.log_path = default_paths['log']
if self.plugins_path is None:
self.plugins_path = default_paths['libexec']
if self.owner is None:
self.owner = DEFAULT_OWNER
if self.group is None:
self.group = DEFAULT_GROUP
if self.root:
for attr in ('etc_path', 'var_path', 'plugins_path', 'run_path', 'log_path'):
setattr(self, attr, change_root(self.root, getattr(self, attr)))
class build_config(Command):
description = "build the shinken config files"
user_options = [
( 'build-dir=', None, "directory to build the config files to"),
]
def initialize_options (self):
self.build_dir = None
self.build_base = None
self.etc_path = None
self.var_path = None
self.run_path = None
self.log_path = None
self.plugins_path = None
self._install_scripts = None
self.owner = None
self.group = None
def finalize_options (self):
self.set_undefined_options('build',
('build_base', 'build_base'),
('build_config', 'build_dir'),
)
self.set_undefined_options('install',
('install_scripts', '_install_scripts'),
)
self.set_undefined_options('install_config',
('etc_path', 'etc_path'),
('var_path', 'var_path'),
('run_path', 'run_path'),
('log_path', 'log_path'),
('plugins_path', 'plugins_path'),
('owner', 'owner'),
('group', 'group')
)
if self.build_dir is None:
self.build_dir = os.path.join(self.build_base, 'etc')
def run(self):
if not self.dry_run:
self.mkpath(self.build_dir)
self.generate_default_shinken_file()
self.update_configfiles()
def generate_default_shinken_file(self):
# The default file must have good values for the directories:
# etc, var and where to push scripts that launch the app.
templatefile = "bin/default/shinken.in"
outfile = os.path.join(self.build_base, "bin/default/shinken")
log.info('generating %s from %s', outfile, templatefile)
if not self.dry_run:
self.mkpath(os.path.dirname(outfile))
# Read the template file
f = open(templatefile)
buf = f.read()
f.close
# substitute
buf = buf.replace("$ETC$", self.etc_path)
buf = buf.replace("$VAR$", self.var_path)
buf = buf.replace("$RUN$", self.run_path)
buf = buf.replace("$LOG$", self.log_path)
buf = buf.replace("$SCRIPTS_BIN$", self._install_scripts)
# write out the new file
f = open(outfile, "w")
f.write(buf)
f.close()
def update_configfiles(self):
# Here, even with --root we should change the file with good values
# then update the /etc/*d.ini files ../var value with the real var one
# Open a /etc/*d.ini file and change the ../var occurence with a
# good value from the configuration file
for (dname, name) in daemon_ini_files:
inname = os.path.join('etc', name)
outname = os.path.join(self.build_dir, name)
log.info('updating path in %s : to "%s"' % (outname, self.var_path))
# but we have to force the user/group & workdir values still:
append_file_with(inname, outname, """
user=%s
group=%s
workdir=%s
pidfile=%s/%sd.pid
""" % ( self.owner, self.group, self.var_path, self.run_path, dname))
# And now the resource.cfg path with the value of libexec path
# Replace the libexec path by the one in the parameter file
for name in resource_cfg_files:
inname = os.path.join('etc', name)
outname = os.path.join(self.build_dir, name)
log.info('updating path in %s', outname)
update_file_with_string(inname, outname,
"/usr/local/shinken/libexec",
self.plugins_path)
# And update the nagios.cfg file for all /usr/local/shinken/var
# value with good one
for name in main_config_files:
inname = os.path.join('etc', name)
outname = os.path.join(self.build_dir, name)
log.info('updating path in %s', outname)
## but we HAVE to set the shinken_user & shinken_group to thoses requested :
append_file_with(inname, outname, """
shinken_user=%s
shinken_group=%s
lock_file=%s/arbiterd.pid
local_log=%s/arbiterd.log
""" % ( self.owner, self.group, self.run_path, self.log_path )
)
# UPDATE Shinken-specific.cfg files too
for name in additionnal_config_files:
inname = os.path.join('etc', name)
outname = os.path.join(self.build_dir, name)
# And update the default log path too
log.info('updating log path in %s', outname)
update_file_with_string(inname, outname,
"nagios.log",
"%s/nagios.log" % self.log_path)
class install_config(Command):
description = "install the shinken config files"
user_options = [
( 'install-dir=', 'd', "directory to install config files to" ),
( 'build-dir=', 'b', "build directory (where to install from)" ),
( 'force', 'f', "force installation (overwrite existing files)"),
( 'skip-build', None, "skip the build steps" ),
]
boolean_options = ['force', 'skip-build']
def initialize_options(self):
self.build_dir = None
self.force = None
self.skip_build = None
self.owner = None
self.group = None
self.root = None
self.etc_path = None # typically /etc on Posix systems
self.var_path = None # typically /var on Posix systems
self.run_path = None # typically /etc on Posix systems
self.log_path = None # typically /var on Posix systems
self.plugins_path = None # typically /libexec on Posix systems
def finalize_options(self):
self.set_undefined_options(
'build',
( 'build_config', 'build_dir' ),
)
self.set_undefined_options(
'install',
('root', 'root'),
('etc_path', 'etc_path'),
('var_path', 'var_path'),
('run_path', 'run_path'),
('log_path', 'log_path'),
('plugins_path', 'plugins_path'),
('owner', 'owner'),
('group', 'group')
)
def run(self):
#log.warn('>>> %s', self.lib)
log.warn('>>> %s', self.etc_path)
if not self.skip_build:
self.run_command('build_config')
self.outfiles = self.copy_tree(self.build_dir, self.etc_path)
# if root is set, it's for pacakge, so NO chown
if pwd and not self.root:
# assume a posix system
uid = self.get_uid(self.owner)
gid = self.get_gid(self.group)
for file in self.get_outputs():
log.info("Changing owner of %s to %s:%s", file, self.owner, self.group)
if not self.dry_run:
os.chown(file, uid, gid)
# recursivly changing permissions for etc/shinken and var/lib/shinken
self.recursive_chown(self.etc_path, uid, gid, self.owner, self.group)
self.recursive_chown(self.var_path, uid, gid, self.owner, self.group)
self.recursive_chown(self.run_path, uid, gid, self.owner, self.group)
self.recursive_chown(self.log_path, uid, gid, self.owner, self.group)
def get_inputs (self):
return self.distribution.configs or []
def get_outputs(self):
return self.outfiles or []
def recursive_chown(self, path, uid, gid, owner, group):
log.info("Changing owner of %s to %s:%s", path, owner, group)
if not self.dry_run:
os.chown(path, uid, gid)
for dirname, dirs, files in os.walk(path):
for path in itertools.chain(dirs, files):
path = os.path.join(dirname, path)
os.chown(path, uid, gid)
@staticmethod
def get_uid(user_name):
try:
return pwd.getpwnam(user_name)[2]
except KeyError, exp:
raise DistutilsOptionError("The user %s is unknown. "
"Maybe you should create this user"
% user_name)
@staticmethod
def get_gid(group_name):
try:
return grp.getgrnam(group_name)[2]
except KeyError, exp:
raise DistutilsOptionError("The group %s is unknown. "
"Maybe you should create this group"
% group_name)
def append_file_with(infilename, outfilename, append_string):
f = open(infilename)
buf = f.read()
f.close()
f = open(outfilename, "w")
f.write(buf)
f.write(append_string)
f.close()
def gen_data_files(*dirs):
results = []
for src_dir in dirs:
#print "Getting all files from", src_dir
for root,dirs,files in os.walk(src_dir):
for file in files:
results.append(os.path.join(root, file))
return results
def update_file_with_string(infilename, outfilename, match, new_string):
f = open(infilename)
buf = f.read()
f.close()
buf = buf.replace(match, new_string)
f = open(outfilename, "w")
f.write(buf)
f.close()
# Set the default values for the paths
if 'win' in sys.platform:
default_paths = {'var': "c:\\shinken\\var",
'etc': "c:\\shinken\\etc",
'log': "c:\\shinken\\var",
'run': "c:\\shinken\\var",
'libexec': "c:\\shinken\\libexec",
}
elif 'linux' in sys.platform:
default_paths = {'var': "/var/lib/shinken/",
'etc': "/etc/shinken",
'run': "/var/run/shinken",
'log': "/var/log/shinken",
'libexec': "/usr/lib/shinken/plugins",
}
elif 'bsd' in sys.platform or 'dragonfly' in sys.platform:
default_paths = {'var': "/var/lib/shinken",
'etc': "/usr/local/etc/shinken",
'run': "/var/run/shinken",
'log': "/var/log/shinken",
'libexec': "/usr/local/libexec/shinken",
}
else:
raise "Unsupported platform, sorry"
required_pkgs = []
if sys.version_info < (2, 5):
required_pkgs.append('pyro<4')
else:
required_pkgs.append('pyro')
if sys.version_info < (2, 6):
required_pkgs.append('multiprocessing')
etc_root = os.path.dirname(default_paths['etc'])
# nagios/shinken global config
main_config_files = ('nagios.cfg',
'nagios-windows.cfg')
additionnal_config_files = ('shinken-specific.cfg',
'shinken-specific-high-availability.cfg',
'shinken-specific-load-balanced-only.cfg'
)
# daemon configs
daemon_ini_files = (('broker', 'brokerd.ini'),
('broker', 'brokerd-windows.ini'),
('receiver', 'receiverd.ini'),
('receiver', 'receiverd-windows.ini'),
('poller', 'pollerd.ini'),
('poller', 'pollerd-windows.ini'),
('reactionner', 'reactionnerd.ini'),
('reactionner', 'reactionnerd-windows.ini'),
('scheduler', 'schedulerd.ini'),
('scheduler', 'schedulerd-windows.ini'),
)
resource_cfg_files = ('resource.cfg', )
# Ok, for the webui files it's a bit tricky. we need to add all of them in
#the package_data of setup(), but from a point of view of the
# module shinken, so the directory shinken... but without movingfrom pwd!
# so : sorry for the replace, really... I HATE SETUP()!
full_path_webui_files = gen_data_files('shinken/webui')
webui_files = [s.replace('shinken/webui/', 'webui/') for s in full_path_webui_files]
package_data = ['*.py','modules/*.py','modules/*/*.py']
package_data.extend(webui_files)
print "All package _data"
if __name__ == "__main__":
setup(
cmdclass = {
'build': build,
'install': install,
'build_config': build_config,
'install_config': install_config
},
name = "Shinken",
version = "0.8",
packages = find_packages(),
package_data = {'' : package_data},
description = "Shinken is a monitoring tool compatible with Nagios configuration and plugins",
long_description=open('README').read(),
author = "Gabes Jean",
author_email = "[email protected]",
license = "GNU Affero General Public License",
url = "http://www.shinken-monitoring.org",
zip_safe=False,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
],
install_requires = [
required_pkgs
],
scripts = glob('bin/shinken-[!_]*'),
data_files = [
(
default_paths['etc'],
[ # other configs
'etc/commands.cfg',
'etc/contactgroups.cfg',
'etc/contacts.cfg',
'etc/dependencies.cfg',
'etc/escalations.cfg',
'etc/hostgroups.cfg',
#'etc/resource.cfg', # see above
'etc/servicegroups.cfg',
'etc/templates.cfg',
'etc/timeperiods.cfg',
'etc/discovery.cfg',
'etc/discovery_rules.cfg',
'etc/discovery_runs.cfg',
]
),
(
os.path.join(default_paths['etc'], 'hosts' ),
glob('etc/hosts/[!_]*.cfg')
),
(
os.path.join(default_paths['etc'], 'services'),
glob('etc/services/[!_]*.cfg')
),
( os.path.join(default_paths['etc'], 'objects', 'discovery'), tuple() ),
(
os.path.join(default_paths['etc'], 'certs') ,
glob('etc/certs/[!_]*.pem')
),
(
os.path.join('/etc', 'init.d'),
[
'bin/init.d/shinken',
'bin/init.d/shinken-arbiter',
'bin/init.d/shinken-broker',
'bin/init.d/shinken-receiver',
'bin/init.d/shinken-poller',
'bin/init.d/shinken-reactionner',
'bin/init.d/shinken-scheduler'
]
),
(
os.path.join(etc_root, 'default',),
[ 'build/bin/default/shinken' ]
),
(
default_paths['var'],
[ 'var/void_for_git' ]
),
(
default_paths['run'],
[ 'var/void_for_git' ]
),
(
default_paths['log'],
[ 'var/void_for_git' ]
)
,
(
default_paths['libexec'], ['libexec/check.sh']
),
]
)