Hello, I am seeing some strange behavior with my /etc/rc.conf.local regarding my configuration for running two instances of OSPFD in different RDomains.
The way I have this configured, is I have a symlink: /etc/rc.d/ospf2d -> /etc/rc.d/ospfd so that the ospfd that runs in rdomain 2 has its own entry in rc.conf.local, pointing to its own config file. In my /etc/rc.conf.local I have the following: ############################# bgpd_flags= ldpd_flags= ospf2d_flags=-f /etc/ospf2d.conf ospf2d_rtable=2 ospfd_flags= pf=NO pkg_scripts=salt_minion ospf2d salt_minion_rtable=3 ############################# However I notice that something is removing the "ospf2d_flags=..." line as output from daily insecurity mail: ====== /etc/rc.conf.local diffs (-OLD +NEW) ====== --- /var/backups/etc_rc.conf.local.current Wed Jan 16 01:30:06 2019 +++ /etc/rc.conf.local Fri Feb 15 13:05:17 2019 @@ -1,9 +1,7 @@ bgpd_flags= ldpd_flags= -ospf2d_flags=-f /etc/ospf2d.conf ospf2d_rtable=2 ospfd_flags= pf=NO pkg_scripts=salt_minion ospf2d salt_minion_rtable=3 Is my syntax incorrect? Would /etc/daily be doing something here to my configuration? Why would this line keep being automatically removed? Thanks in advance!