2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-27 20:49:04 +00:00
bind/contrib/scripts/nanny.pl

47 lines
1015 B
Perl
Raw Normal View History

2000-06-19 19:32:46 +00:00
#!/usr/bin/perl
#
# Copyright (C) 2000, 2001, 2004, 2007, 2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
2012-06-29 11:39:47 +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-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
}