#!/bin/bash

# Lancement eventuel de l'accounting
if [ $(CreoleGet activer_accounting) == 'oui' ];then
module_type=$(CreoleGet module_type)
 if [[ $module_type != 'amon' ]];then
 /root/scripts/accounting.sh
 fi
fi

# on sort en 0 pour ne pas bloquer l'instance ou reconfigure
exit 0
