* Start dhclient after xend.

svn path=/nixos/trunk/; revision=23782
This commit is contained in:
Eelco Dolstra 2010-09-14 11:58:06 +00:00
parent 72d9235992
commit 071b192c9d

View File

@ -97,6 +97,11 @@ let cfg = config.virtualisation.xen; in
postStop = "${pkgs.xen}/sbin/xend stop";
};
# To prevent a race between dhclient and xend's bridge setup
# script (which renames eth* to peth* and recreates eth* as a
# virtual device), start dhclient after xend.
jobs.dhclient.startOn = mkOverride 50 "started xend";
};
}