[SOLVED] can't get rid of OpenVPN service output in tty
I have enabled the openvpn runit service, but at boot time the console is flooded by the service output and I can't even see my login prompt (i am not using any DM). I have tried to use the fix that I found elsewhere in this section, that is appending 2>/dev/null to the command in the run file:
#!/bin/sh
[ -r conf ] && . ./conf
exec openvpn --config ${CONF_FILE:=/etc/openvpn/openvpn.conf} 2>/dev/null
however it didn't work.