# == Class: openvpn::config # # This class sets up the openvpn enviornment as well as the default config file # # # === Examples # # This class should not be directly invoked # # === Authors # # * Raffael Schmid # * John Kinsella # * Justin Lambert # class openvpn::config { include concat::setup concat { '/etc/default/openvpn': owner => root, group => root, mode => 644, warn => true; } concat::fragment { 'openvpn.default.header': content => template('openvpn/etc-default-openvpn.erb'), target => '/etc/default/openvpn', order => 01; } }