limiter le service syslog a 100k/file x10
This commit is contained in:
parent
d30789f0a9
commit
9b83a42b50
5
main.tf
5
main.tf
|
@ -27,6 +27,11 @@ resource "null_resource" "alpine_postinstall" {
|
||||||
"echo '# stop and disable service crond'",
|
"echo '# stop and disable service crond'",
|
||||||
"rc-service crond stop",
|
"rc-service crond stop",
|
||||||
"rc-update del crond",
|
"rc-update del crond",
|
||||||
|
#
|
||||||
|
"echo '# bricoler le service syslog'",
|
||||||
|
"echo '# limiter a 10 fichiers messages.* de 100k max' > /etc/conf.d/syslog",
|
||||||
|
"echo 'SYSLOGD_OPTS=\"-t -D -s100 -b10 -l6\"' >> /etc/conf.d/syslog",
|
||||||
|
"rc-service syslog restart",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue