summaryrefslogtreecommitdiff
path: root/data/live-build-config/hooks/live/30-strongswan-configs.chroot
diff options
context:
space:
mode:
Diffstat (limited to 'data/live-build-config/hooks/live/30-strongswan-configs.chroot')
-rwxr-xr-xdata/live-build-config/hooks/live/30-strongswan-configs.chroot19
1 files changed, 19 insertions, 0 deletions
diff --git a/data/live-build-config/hooks/live/30-strongswan-configs.chroot b/data/live-build-config/hooks/live/30-strongswan-configs.chroot
index 25562a65..59e000a9 100755
--- a/data/live-build-config/hooks/live/30-strongswan-configs.chroot
+++ b/data/live-build-config/hooks/live/30-strongswan-configs.chroot
@@ -36,3 +36,22 @@ with open('/etc/strongswan.d/charon/farp.conf', 'r') as f:
with open('/etc/strongswan.d/charon/farp.conf', 'w') as f:
f.write(farp_conf)
+
+
+# Add ike-name to logging
+charon_logging = """
+charon {
+ syslog {
+ # prefix for each log message
+ identifier = charon
+ # use default settings to log to the LOG_DAEMON facility
+ daemon {
+ default = 1
+ ike_name = yes
+ }
+ }
+}
+"""
+
+with open('/etc/strongswan.d/charon-logging.conf', 'w') as f:
+ f.write(charon_logging)