cups: Start after network.target

http://hydra.nixos.org/build/10661709
This commit is contained in:
Eelco Dolstra 2014-04-24 22:46:26 +02:00
parent 2c70276d96
commit d7a7f80aff
2 changed files with 3 additions and 4 deletions

@ -126,7 +126,8 @@ in
{ description = "CUPS Printing Daemon";
wantedBy = [ "multi-user.target" ];
after = [ "network-interfaces.target" ];
wants = [ "network.target" ];
after = [ "network.target" ];
path = [ cups ];

@ -31,9 +31,7 @@ import ./make-test.nix ({pkgs, ... }: {
# Make sure that cups is up on both sides.
$server->waitForUnit("cupsd.service");
$server->waitForUnit("network.target");
$client->waitForUnit("cupsd.service");
$client->waitForUnit("network.target");
$client->succeed("lpstat -r") =~ /scheduler is running/ or die;
$client->succeed("lpstat -H") =~ "/var/run/cups/cups.sock" or die;
$client->succeed("curl --fail http://localhost:631/");