29 lines
393 B
Python
29 lines
393 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
info["owner"] = "root"
|
|
info["group"] = "root"
|
|
info["perms"] = 0644
|
|
|
|
header('Demarrage de monit')
|
|
|
|
# Pour wheezy et au-delà
|
|
if not has('squeeze'):
|
|
print """
|
|
|
|
# On lance monit automatiquement
|
|
START="yes"
|
|
|
|
MONIT_OPTS="-d 60"
|
|
|
|
"""
|
|
else:
|
|
print """
|
|
|
|
# on lance monit au demarrage
|
|
startup=1
|
|
|
|
# intervale de verification
|
|
CHECK_INTERVALS=60
|
|
"""
|
|
|