0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos: Support network-online target in addition to ip-up

This commit is contained in:
William A. Kennington III 2014-11-24 11:57:50 -08:00
parent 0626c1ecf0
commit 2057d9087f
3 changed files with 5 additions and 2 deletions

View file

@ -52,6 +52,7 @@ let
#!/bin/sh
if test "$2" = "up"; then
${config.systemd.package}/bin/systemctl start ip-up.target
${config.systemd.package}/bin/systemctl start network-online.target
fi
'';