You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If /etc/default/tinc is set up on systemd hosts, I would go straight instead and add EnvironmentFie= entry and the specific variable instead of putting the configuration in the unit file directly by Ansible. This helps by keeping the configuration in one place and leaving the unit files static, which means that systemd doesn't need to be reloaded each time configuration changes.
Need to replace templates/etc/systemd/system/[email protected] line 9:
ExecStart=/usr/sbin/tincd -D -n %i -o Interface=%i --mlock --chroot --user={{ tinc_user }}
with the following:
ExecStart=/usr/sbin/tincd -D {{ tinc_extra_options }} -n %i -o Interface=%i --mlock --chroot --user={{ tinc_user }}
The text was updated successfully, but these errors were encountered: