
Ignore-this: e656f8cbd307e85fc86a3ea92c1f3a3e darcs-hash:20090329193209-ffbb2-80e8d94c03ac0c665219ff2672028c2ba8a446a3.gz
21 lines
410 B
Python
21 lines
410 B
Python
# -*- mode: python; coding: utf-8 -*-
|
|
|
|
include("ip")
|
|
|
|
import sys as _sys
|
|
_sys.path.append('/usr/scripts/munin/scripts')
|
|
del _sys
|
|
|
|
info["owner"] = "root"
|
|
info["group"] = "root"
|
|
|
|
import hosts_plugins as h_p
|
|
|
|
cron_lines = h_p.hosts_crons.get(hostname,None)
|
|
|
|
header("""Commandes cron pour les plugins munin custom Cr@ns""")
|
|
|
|
if cron_lines:
|
|
print '\n\n'.join(cron_lines)
|
|
else:
|
|
print '# Rien à voir ici...'
|