-@fedora@ systemctl enable glite-lb-bkserverd.service
-@fedora@ systemctl enable glite-lb-logd.service
-@fedora@ systemctl enable glite-lb-interlogd.service
-@fedora@ systemctl enable glite-lb-notif-interlogd.service
-@fedora@ if test x"$GLITE_LB_TYPE" = x"proxy" -o x"$GLITE_LB_TYPE" = x"both"; then
-@fedora@ systemctl enable glite-lb-proxy-interlogd.service
-@fedora@ else
-@fedora@ systemctl disable glite-lb-proxy-interlogd.service
-@fedora@ fi
-@fedora@ if test x"$GLITE_LB_HARVESTER_ENABLED" = x"true"; then
-@fedora@ systemctl enable glite-lb-harvester.service
-@fedora@ else
-@fedora@ systemctl disable glite-lb-harvester.service
-@fedora@ fi
-@fedora@
-@fedora@ startup_error=0
-@fedora@ systemctl restart glite-lb-bkserverd.service || startup_error=1
-@fedora@ systemctl restart glite-lb-logd.service || startup_error=1
-@fedora@ systemctl restart glite-lb-interlogd.service || startup_error=1
-@fedora@ systemctl restart glite-lb-notif-interlogd.service || startup_error=1
-@fedora@ if test x"$GLITE_LB_TYPE" = x"proxy" -o x"$GLITE_LB_TYPE" = x"both"; then
-@fedora@ systemctl restart glite-lb-proxy-interlogd.service || startup_error=1
-@fedora@ else
-@fedora@ systemctl stop glite-lb-proxy-interlogd.service >/dev/null 2>&1
-@fedora@ fi
-@fedora@ if test x"$GLITE_LB_HARVESTER_ENABLED" = x"true"; then
-@fedora@ systemctl restart glite-lb-harvester.service || startup_error=1
-@fedora@ else
-@fedora@ systemctl stop glite-lb-harvester.service >/dev/null 2>&1
-@fedora@ fi
-@debian@ run_proxy=no
-@debian@ run_harvester=no
-@debian@ if test x"$GLITE_LB_TYPE" = x"proxy" -o x"$GLITE_LB_TYPE" = x"both"; then
-@debian@ run_proxy=yes
-@debian@ fi
-@debian@ if test x"$GLITE_LB_HARVESTER_ENABLED" = x"true"; then
-@debian@ run_harvester=yes
-@debian@ fi
-@debian@ grep -v ^RUN_ @defaultdir@/glite-lb > /tmp/glite-lb
-@debian@ cat <<EOF >> /tmp/glite-lb
-@debian@RUN_SERVER=yes
-@debian@RUN_IL=yes
-@debian@RUN_PROXY_IL=$run_proxy
-@debian@RUN_NOTIF_IL=yes
-@debian@RUN_LOGD=yes
-@debian@RUN_HARVESTER=$run_harvester
-@debian@EOF
-@debian@ mv /tmp/glite-lb @defaultdir@/glite-lb