Fix quagga class

Change-Id: Icd6013fed0f92585f8ceb993f2eabb117d7d717c
Signed-off-by: Michal Skalski <mskalski@mirantis.com>
This commit is contained in:
Michal Skalski 2016-07-05 10:53:16 +02:00
parent c539dc87d9
commit 32b3824f84
1 changed files with 3 additions and 3 deletions

View File

@ -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']
}
}