lldpd: add support for 'readonly_mode'
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com> SVN-Revision: 44689
This commit is contained in:
parent
e995ed5060
commit
470e89f977
1 changed files with 3 additions and 0 deletions
|
@ -24,6 +24,7 @@ start() {
|
||||||
local lldp_class
|
local lldp_class
|
||||||
local lldp_location
|
local lldp_location
|
||||||
local lldp_description
|
local lldp_description
|
||||||
|
local readonly_mode
|
||||||
|
|
||||||
config_load 'lldpd'
|
config_load 'lldpd'
|
||||||
config_get_bool enable_cdp 'config' 'enable_cdp' 0
|
config_get_bool enable_cdp 'config' 'enable_cdp' 0
|
||||||
|
@ -33,6 +34,7 @@ start() {
|
||||||
config_get lldp_class 'config' 'lldp_class'
|
config_get lldp_class 'config' 'lldp_class'
|
||||||
config_get lldp_location 'config' 'lldp_location'
|
config_get lldp_location 'config' 'lldp_location'
|
||||||
config_get lldp_description 'config' 'lldp_description' "$(find_release_info)"
|
config_get lldp_description 'config' 'lldp_description' "$(find_release_info)"
|
||||||
|
config_get_bool readonly_mode 'config' 'readonly_mode' 0
|
||||||
|
|
||||||
local ifaces
|
local ifaces
|
||||||
config_get ifaces 'config' 'interface'
|
config_get ifaces 'config' 'interface'
|
||||||
|
@ -50,6 +52,7 @@ start() {
|
||||||
[ $enable_fdp -gt 0 ] && append args '-f'
|
[ $enable_fdp -gt 0 ] && append args '-f'
|
||||||
[ $enable_sonmp -gt 0 ] && append args '-s'
|
[ $enable_sonmp -gt 0 ] && append args '-s'
|
||||||
[ $enable_edp -gt 0 ] && append args '-e'
|
[ $enable_edp -gt 0 ] && append args '-e'
|
||||||
|
[ $readonly_mode -gt 0 ] && append args '-r'
|
||||||
|
|
||||||
mkdir -p /var/run/lldp
|
mkdir -p /var/run/lldp
|
||||||
chown lldp:lldp /var/run/lldp
|
chown lldp:lldp /var/run/lldp
|
||||||
|
|
Loading…
Reference in a new issue