From: Michael Andreen Date: Thu, 19 May 2005 21:22:31 +0000 (+0000) Subject: soft, not hard, goals and bugfixes in the gentoo file X-Git-Url: https://ruin.nu/git/?p=popboot.git;a=commitdiff_plain;h=1e6333056c5f2887498b2b8c439171e526af94a3 soft, not hard, goals and bugfixes in the gentoo file --- diff --git a/genoo b/genoo index fd0bb2d..8ad9bdb 100644 --- a/genoo +++ b/genoo @@ -1,6 +1,6 @@ #runlevels 2: AUMIX, HALD, CRON -3: AUMIX, HALD, CRON, CUPSD, DISTCCD, FIRWALL, HDDTEMP, HDPARM, SSHD, NTPD +3: AUMIX, HALD, CRON, CUPSD, DISTCCD, FIREWALL, HDDTEMP, HDPARM, SSHD, NTPD #startup for gentoo aumix @@ -28,6 +28,11 @@ DBUS #, HOTPLUG "/etc/init.d/hald start" 0: HALD +dbus + #no preconditions +"/etc/init.d/dbus start" +0: DBUS + hddtemp # no preconditions "/etc/init.d/hddtemp start" @@ -40,7 +45,7 @@ hdparm metalog # no preconditions -"/etc/inid.d/metalog start +"/etc/inid.d/metalog start" 0: METALOG, LOGGER eth0 @@ -48,7 +53,7 @@ eth0 "/etc/init.d/net.eth0 start" 0: NET, ETH0 -ntp-client +ntpclient NET, ?LOGGER "/etc/init.d/ntp-client start" 0: NTPCLIENT @@ -68,7 +73,8 @@ NET, ?LOGGER "/etc/init.d/sshd start" 0: SSHD -vixie-cron +vixiecron ?LOGGER, ?NTPCLIENT "/etc/init.d/vixie-cron start" -0: CRON, VIXIE-CRON +0: CRON, VIXIECRON + diff --git a/node.cpp b/node.cpp index b4d22fb..83b3334 100644 --- a/node.cpp +++ b/node.cpp @@ -70,7 +70,7 @@ StartNode::StartNode(const Literals& init){ EndNode::EndNode(const Literals& goal){ Preconditions goalState; for(Literals::const_iterator g = goal.begin(); g != goal.end(); ++g) - goalState[*g] = true; + goalState[*g] = false; _action = new Action("finish",goalState,"",EffectsMap()); _preconditions = _action->preconditions(); }