1. Updated the README 2. Added License file 3. Updates the headers of all the manifest files
20 lines
423 B
Puppet
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']
|
|
}
|
|
}
|