mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
19 lines
406 B
Text
19 lines
406 B
Text
set -e
|
|
|
|
force=$1
|
|
|
|
function safe_copy () {
|
|
if [[ "$force" == "True" ]]; then
|
|
sudo yunohost service safecopy \
|
|
-s nsswitch $1 $2 --force
|
|
else
|
|
sudo yunohost service safecopy \
|
|
-s nsswitch $1 $2
|
|
fi
|
|
}
|
|
|
|
cd /usr/share/yunohost/templates/nsswitch
|
|
|
|
if [[ "$(safe_copy nsswitch.conf /etc/nsswitch.conf | tail -n1)" == "True" ]]; then
|
|
sudo service nscd restart
|
|
fi
|