diff --git a/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp b/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp index f68d9af..0a76bc8 100644 --- a/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp +++ b/deployment_scripts/puppet/modules/opendaylight/manifests/quagga.pp @@ -7,13 +7,13 @@ class opendaylight::quagga ( ensure => running } - $config_path = /usr/lib/quagga/qthrift/bgpd.conf + $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'] + require => Package['opnfv-quagga'], + notify => Service['opnfv-quagga'] } }