15 lines
285 B
Text
15 lines
285 B
Text
# -*- coding: utf-8 -*-
|
|
|
|
info["owner"] = "root"
|
|
info["group"] = "root"
|
|
info["mode"] = 0600
|
|
|
|
include("secrets")
|
|
|
|
header("Config de wget pour récupérer le status des serveurs")
|
|
|
|
print """quiet=1
|
|
timeout=10
|
|
http-user=monit"""
|
|
print "http-password=" + secrets_new.get('monit_password')
|
|
|