about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-09-01 03:07:23 +0200
committerFlorian Klink <flokli@flokli.de>2019-09-01 19:06:38 +0200
commitf74735c9d7e7b978827ff17b5f8cb375753dca0b (patch)
tree75809b54a017e6ac94cf507f14cf83387299b877 /nixos/tests
parent7f42adf7a2a6ab0f18dd441820f1089a7b2c0cfd (diff)
downloadnixlib-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar
nixlib-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.gz
nixlib-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.bz2
nixlib-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.lz
nixlib-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.xz
nixlib-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.zst
nixlib-f74735c9d7e7b978827ff17b5f8cb375753dca0b.zip
nixos: remove dependencies on local-fs.target
Since https://github.com/NixOS/nixpkgs/pull/61321, local-fs.target is
part of sysinit.target again, meaning units without
DefaultDependencies=no will automatically depend on it, and the manual
set dependencies can be dropped.
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/hocker-fetchdocker/machine.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/hocker-fetchdocker/machine.nix b/nixos/tests/hocker-fetchdocker/machine.nix
index 78343f0e02f0..885adebe1498 100644
--- a/nixos/tests/hocker-fetchdocker/machine.nix
+++ b/nixos/tests/hocker-fetchdocker/machine.nix
@@ -11,8 +11,8 @@
   systemd.services.docker-load-fetchdocker-image = {
     description = "Docker load hello-world-container";
     wantedBy    = [ "multi-user.target" ];
-    wants       = [ "docker.service" "local-fs.target" ];
-    after       = [ "docker.service" "local-fs.target" ];
+    wants       = [ "docker.service" ];
+    after       = [ "docker.service" ];
 
     script = ''
       ${pkgs.hello-world-container}/compositeImage.sh | ${pkgs.docker}/bin/docker load