summaryrefslogtreecommitdiff
path: root/tests/white-box/openvpn.rb
blob: 2b1276f4c5d7eaeb965b957ac6352517769bb4ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
raise SkipTest unless $node["services"].include?("openvpn")

class TestOpenvpn < LeapTest
  depends_on "TestNetwork"

  def setup
  end

  def test_01_daemons_running
    assert_running '/usr/sbin/openvpn .* /etc/openvpn/tcp_config.conf'
    assert_running '/usr/sbin/openvpn .* /etc/openvpn/udp_config.conf'
    assert_running '/usr/sbin/unbound'
    pass
  end

end