Stop and restart prosody when modules are updated to avoid undefined behavior

This commit is contained in:
Bob Mottram 2017-05-14 22:46:15 +01:00
parent b3825d1602
commit afe945c377
1 changed files with 6 additions and 0 deletions

View File

@ -319,8 +319,10 @@ function update_prosody_modules {
fi
tar -xzvf $prosody_modules_filename
if [ -d prosody-modules ]; then
systemctl stop prosody
cp -r prosody-modules/* /var/lib/prosody/prosody-modules
chown -R prosody:prosody /var/lib/prosody/prosody-modules
systemctl start prosody
fi
fi
fi
@ -328,10 +330,14 @@ function update_prosody_modules {
# change to using pep rather than profile modules
if grep '"profile"' /etc/prosody/prosody.cfg.lua; then
systemctl stop prosody
sed -i 's|"profile"|"pep"|g' /etc/prosody/prosody.cfg.lua
systemctl start prosody
fi
if ! grep '"vcard"' /etc/prosody/prosody.cfg.lua; then
systemctl stop prosody
sed -i '/"pep"/a "vcard";' /etc/prosody/prosody.cfg.lua
systemctl start prosody
fi
}