diff options
author | Warren Baker <warren@decoy.co.za> | 2011-09-30 21:32:54 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2011-09-30 21:32:54 +0200 |
commit | 067056363be7abfa95c0873c99347e826a109fc6 (patch) | |
tree | e84d702aa0dfe681ed720b685d7bc7dd324a2a36 /config/unbound | |
parent | 4763db0d8ca282fc0e3d0165ba9804fae2e7aefe (diff) | |
download | pfsense-packages-067056363be7abfa95c0873c99347e826a109fc6.tar.gz pfsense-packages-067056363be7abfa95c0873c99347e826a109fc6.tar.bz2 pfsense-packages-067056363be7abfa95c0873c99347e826a109fc6.zip |
Check to see if file is link, if not then whack and create a symbolic link. Also bump version to appease the minions
Diffstat (limited to 'config/unbound')
-rw-r--r-- | config/unbound/unbound.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/unbound/unbound.inc b/config/unbound/unbound.inc index afb3c0b7..76c35277 100644 --- a/config/unbound/unbound.inc +++ b/config/unbound/unbound.inc @@ -199,8 +199,10 @@ function unbound_control($action) { if(!is_service_running("unbound")) unbound_ctl_exec("start"); /* Link dnsmasq.pid to prevent dhcpleases logging error */ - if (!file_exists("/var/run/dnsmasq.pid")) + if (!is_link("/var/run/dnsmasq.pid")) { + @unlink("/var/run/dnsmasq.pid"); mwexec("/bin/ln -s /var/run/unbound.pid /var/run/dnsmasq.pid"); + } fetch_root_hints(); } break; |