diff --git a/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp b/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp index 0a76bc8..abcb604 100644 --- a/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp +++ b/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp @@ -1,7 +1,7 @@ class opendaylight::quagga ( ){ package { ['opnfv-quagga', 'libcapnp-0.5.99', 'python-pycapnp', 'python-thriftpy']: - ensure => installed, + ensure => installed, } service {'opnfv-quagga': ensure => running @@ -9,11 +9,12 @@ class opendaylight::quagga ( $config_path = '/usr/lib/quagga/qthrift/bgpd.conf' ini_setting { 'bgp_password': - ensure => present, - setting => 'password', - value => 'sdncbgpc', - path => $config_path, - require => Package['opnfv-quagga'], - notify => Service['opnfv-quagga'] + ensure => present, + setting => 'password', + value => 'sdncbgpc', + path => $config_path, + key_val_separator => ' ', + require => Package['opnfv-quagga'], + notify => Service['opnfv-quagga'] } }