diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-12 01:01:53 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-12 01:01:53 +0000 |
commit | ec6a10cd536dd3718b73f3560230cabece08173a (patch) | |
tree | caca59c8febe3939d8baca45f92d613fcdbd26be /etc/rc.network | |
parent | 841390683cfe38bc3bdb20bad2e33af254260b14 (diff) |
Why shouldn't amd always write its PID to a file?
Since I cannot answer that question, make it.
Notes
Notes:
svn path=/head/; revision=92126
Diffstat (limited to 'etc/rc.network')
-rw-r--r-- | etc/rc.network | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/etc/rc.network b/etc/rc.network index 04824744316d..eb1ee91111d4 100644 --- a/etc/rc.network +++ b/etc/rc.network @@ -754,12 +754,8 @@ network_pass3() { ;; esac - if [ -n "${amd_flags}" ]; then - amd -p ${amd_flags}\ - > /var/run/amd.pid 2> /dev/null - else - amd 2> /dev/null - fi + amd -p ${amd_flags}\ + > /var/run/amd.pid 2> /dev/null ;; esac else |