summary refs log tree commit diff
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
parent6db2057f00c0629dae7677674eeb5faaa53c5ed6 (diff)
downloadnixpkgs-683eeab2993223bc6391d826691327c3c29e82c5.tar
nixpkgs-683eeab2993223bc6391d826691327c3c29e82c5.tar.gz
nixpkgs-683eeab2993223bc6391d826691327c3c29e82c5.tar.bz2
nixpkgs-683eeab2993223bc6391d826691327c3c29e82c5.tar.lz
nixpkgs-683eeab2993223bc6391d826691327c3c29e82c5.tar.xz
nixpkgs-683eeab2993223bc6391d826691327c3c29e82c5.tar.zst
nixpkgs-683eeab2993223bc6391d826691327c3c29e82c5.zip
openvpn: remove redundant timestamps from log output
The systemd journal is already logging and showing timestamps
-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 7a96b673c51..a418839d22b 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";
     };