summaryrefslogtreecommitdiff
path: root/vagrant/server.pp
blob: f0c0e0a5169c04e5d43083572bbb036bee84039c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
node default {
  openvpn::server { 'winterthur':
    country      => "CH",
    province     => "ZH",
    city         => "Winterthur",
    organization => "example.org",
    email        => "root@example.org";
  }

  openvpn::client { 'client1':
    server => 'winterthur';
  }

}