Bugfix: refresh_dns flag file was never removed by slavedns called...
This commit is contained in:
parent
b944f22cd4
commit
b0cf83c8ea
|
@ -84,7 +84,7 @@ for($i=0;$i<count($c);$i++) {
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<tr class="lst<?php echo $col; ?>">
|
<tr class="lst<?php echo $col; ?>">
|
||||||
<td class="center"><div class="ina"><a href="adm_slaveip.php?delip=<?php echo urlencode($c[$i][ip]); ?>"><img src="images/delete.png" alt="<?php __("Delete"); ?>" /><?php __("Delete"); ?></a></div></td>
|
<td class="center"><div class="ina"><a href="adm_slaveip.php?delip=<?php echo urlencode($c[$i]['ip']); ?>"><img src="images/delete.png" alt="<?php __("Delete"); ?>" /><?php __("Delete"); ?></a></div></td>
|
||||||
<td><?php echo $c[$i]["ip"]."/".$c[$i]["class"]; ?></td>
|
<td><?php echo $c[$i]["ip"]."/".$c[$i]["class"]; ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -28,3 +28,6 @@ chown root:bind "$TARGET"
|
||||||
chmod 640 "$TARGET"
|
chmod 640 "$TARGET"
|
||||||
|
|
||||||
invoke-rc.d bind9 reload
|
invoke-rc.d bind9 reload
|
||||||
|
|
||||||
|
# Remove FLAGSLAVE file
|
||||||
|
rm -f "$FLAGFILE"
|
||||||
|
|
Loading…
Reference in New Issue