diff options
| author | cvsdist <cvsdist@fedoraproject.org> | 2004-09-09 03:30:19 +0000 |
|---|---|---|
| committer | cvsdist <cvsdist@fedoraproject.org> | 2004-09-09 03:30:19 +0000 |
| commit | a93eac9da5dc0f96ec2a6a6ce5627b6ead7008f9 (patch) | |
| tree | 9c3ec205da61177ee95143f6818ad09608832ac9 /named.init | |
| parent | aed71218643fec789d5bd25df7fb5f6382a53a52 (diff) | |
auto-import changelog data from bind-9.1.3-2.src.rpmbind-9_1_3-2
Mon Jul 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-2
- Don't use rndc status, it's not yet implemented (#48839)
Sun Jul 08 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- update to 9.1.3 release
Tue Jul 03 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc3.1
- Fix up rndc configuration and improve security (#46586)
Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc2.2
- Sync with caching-nameserver-7.1-6
Mon Jun 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc2.1
- Update to rc2
Fri Jun 01 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.3
- Remove resolv.conf(5) man page, it's now in man-pages
Thu May 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.2
- Add named.conf man page from bind 8.x (outdated, but better than nothing,
- Rename the rndc key (#42895)
- Add dnssec* man pages
Mon May 28 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.1
- 9.1.3rc1
- s/Copyright/License/
Mon May 07 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.2-1
- 9.1.2 final. No changes between 9.1.2-0.rc1.1 and this one, except for
the version number, though.
Thu May 03 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.2-0.rc1.1
- 9.1.2rc1
Thu Mar 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.1-1
- 9.1.1
Diffstat (limited to 'named.init')
| -rwxr-xr-x | named.init | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -48,8 +48,17 @@ stop() { return $RETVAL } rhstatus() { - /usr/sbin/rndc status - return $? +# FIXME: use this once it's implemented +# /usr/sbin/rndc status +# return $? + PIDS=`/sbin/pidof named` + if [ -z "$PIDS" ]; then + echo $"$prog not running." + return 1 + else + echo $"$prog is running, PIDs: $PIDS." + return 0 + fi } restart() { stop |
