. lib/lsb/init-functions
SERVICE="accounts-daemon.service"
LINK="systemd/system/graphical.target.wants/$SERVICE"
if [ ! -L etc/$LINK ]; then
   mkdir -p etc/$(dirname $LINK)
   ln -svf /lib/systemd/system/$SERVICE \
   etc/$LINK &&
   log_success_msg2  "${INFO} Created symlink /etc/$LINK -> /lib/systemd/system/$SERVICE${NORMAL}"
fi
