* Allow the start/stop condition of OpenVPN jobs to be overriden

easily.

svn path=/nixos/trunk/; revision=32673
This commit is contained in:
Eelco Dolstra 2012-02-28 10:30:12 +00:00
parent f55cf99c7c
commit 4f8d076ae7

View File

@ -50,8 +50,8 @@ let
in {
description = "OpenVPN instance ${name}";
startOn = "started network-interfaces";
stopOn = "stopping network-interfaces";
startOn = mkDefault "started network-interfaces";
stopOn = mkDefault "stopping network-interfaces";
path = [ pkgs.iptables pkgs.iproute pkgs.nettools ];