21 lines
313 B
Bash
21 lines
313 B
Bash
# Syslog
|
|
|
|
export VER_conf_syslog="0.0.1"
|
|
|
|
conf_syslog()
|
|
{
|
|
prnt I "Configuration de rsyslog..."
|
|
backupdist /etc/rsyslog.conf
|
|
installfile rsyslog.conf /etc/rsyslog.conf
|
|
svc_restart rsyslog
|
|
}
|
|
|
|
precheck_conf_syslog()
|
|
{
|
|
: # Nothing to check
|
|
}
|
|
|
|
export -f conf_syslog
|
|
export -f precheck_conf_syslog
|
|
|