summary refs log tree commit diff
path: root/nixos/modules/services/networking/openvpn.nix
diff options
context:
space:
mode:
authorErik Arvstedt <erik.arvstedt@gmail.com>2018-04-21 12:51:20 +0200
committerErik Arvstedt <erik.arvstedt@gmail.com>2018-04-21 14:17:22 +0200
commit683eeab2993223bc6391d826691327c3c29e82c5 (patch)
treeb359ed83bb9f07aab54e689bb6582a9dc6d86921 /nixos/modules/services/networking/openvpn.nix
parent6db2057f00c0629dae7677674eeb5faaa53c5ed6 (diff)
downloadnixlib-683eeab2993223bc6391d826691327c3c29e82c5.tar
nixlib-683eeab2993223bc6391d826691327c3c29e82c5.tar.gz
nixlib-683eeab2993223bc6391d826691327c3c29e82c5.tar.bz2
nixlib-683eeab2993223bc6391d826691327c3c29e82c5.tar.lz
nixlib-683eeab2993223bc6391d826691327c3c29e82c5.tar.xz
nixlib-683eeab2993223bc6391d826691327c3c29e82c5.tar.zst
nixlib-683eeab2993223bc6391d826691327c3c29e82c5.zip
openvpn: remove redundant timestamps from log output
The systemd journal is already logging and showing timestamps
Diffstat (limited to 'nixos/modules/services/networking/openvpn.nix')
-rw-r--r--nixos/modules/services/networking/openvpn.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/openvpn.nix b/nixos/modules/services/networking/openvpn.nix
index 7a96b673c51e..a418839d22b8 100644
--- a/nixos/modules/services/networking/openvpn.nix
+++ b/nixos/modules/services/networking/openvpn.nix
@@ -65,7 +65,7 @@ let
 
       path = [ pkgs.iptables pkgs.iproute pkgs.nettools ];
 
-      serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --config ${configFile}";
+      serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --suppress-timestamps --config ${configFile}";
       serviceConfig.Restart = "always";
       serviceConfig.Type = "notify";
     };