Files
puppet-ovn/manifests/northd.pp
Babu Shanmugam 6514c92d42 Following are done
1. Updated the README
2. Added License file
3. Updates the headers of all the manifest files
2016-03-02 07:31:57 +00:00

20 lines
423 B
Puppet

# ovn northd
# == Class: ovn::northd
#
# installs ovn package starts the ovn-northd service
#
class ovn::northd() {
include ovn::params
service { 'northd':
ensure => true,
enable => true,
name => $::ovn::params::ovn_northd_service_name
}
package { 'ovn':
name => $::ovn::params::ovn_package_name,
ensure => 'present',
before => Service['northd']
}
}