récupération après crash
This commit is contained in:
@ -17,7 +17,14 @@ chown domotique:domotique -R /var/log/moha.log
|
||||
# GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
|
||||
|
||||
systemctl daemon-reload
|
||||
systemctl enable presenceD.service
|
||||
systemctl enable moha.service
|
||||
|
||||
R=`systemctl is-enabled presenceD.service`
|
||||
if [ $R != "enabled" ];then
|
||||
echo "enabling presenceD.service"
|
||||
systemctl enable presenceD.service
|
||||
fi
|
||||
R=`systemctl is-enabled moha.service`
|
||||
if [ $R != "enabled" ];then
|
||||
echo "enabling moha.service"
|
||||
systemctl enable moha.service
|
||||
fi
|
||||
#must enable service
|
||||
|
Reference in New Issue
Block a user