2000-06-19 19:32:46 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
#
|
2016-06-27 14:56:38 +10:00
|
|
|
# Copyright (C) 2000, 2001, 2004, 2007, 2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
|
2012-06-29 11:39:47 +10:00
|
|
|
#
|
2016-06-27 14:56:38 +10:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2004-03-05 05:14:21 +00:00
|
|
|
|
2007-06-19 23:47:24 +00:00
|
|
|
# $Id: nanny.pl,v 1.11 2007/06/19 23:47:07 tbox Exp $
|
2000-06-22 22:00:42 +00:00
|
|
|
|
2000-06-19 19:32:46 +00:00
|
|
|
# A simple nanny to make sure named stays running.
|
|
|
|
|
|
|
|
$pid_file_location = '/var/run/named.pid';
|
|
|
|
$nameserver_location = 'localhost';
|
|
|
|
$dig_program = 'dig';
|
|
|
|
$named_program = 'named';
|
|
|
|
|
|
|
|
fork() && exit();
|
|
|
|
|
|
|
|
for (;;) {
|
2000-06-27 00:31:36 +00:00
|
|
|
$pid = 0;
|
|
|
|
open(FILE, $pid_file_location) || goto restart;
|
|
|
|
$pid = <FILE>;
|
|
|
|
close(FILE);
|
|
|
|
chomp($pid);
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-06-27 00:31:36 +00:00
|
|
|
$res = kill 0, $pid;
|
2000-06-19 19:32:46 +00:00
|
|
|
|
2000-06-27 00:31:36 +00:00
|
|
|
goto restart if ($res == 0);
|
2000-06-19 19:32:46 +00:00
|
|
|
|
2000-06-27 00:31:36 +00:00
|
|
|
$dig_command =
|
|
|
|
"$dig_program +short . \@$nameserver_location > /dev/null";
|
|
|
|
$return = system($dig_command);
|
|
|
|
goto restart if ($return == 9);
|
2000-06-19 19:32:46 +00:00
|
|
|
|
2000-06-27 00:31:36 +00:00
|
|
|
sleep 30;
|
|
|
|
next;
|
2000-06-19 19:32:46 +00:00
|
|
|
|
|
|
|
restart:
|
2000-06-27 00:31:36 +00:00
|
|
|
if ($pid != 0) {
|
|
|
|
kill 15, $pid;
|
|
|
|
sleep 30;
|
|
|
|
}
|
|
|
|
system ($named_program);
|
|
|
|
sleep 120;
|
2000-06-19 19:32:46 +00:00
|
|
|
}
|