10 lines
120 B
Bash
Executable File
10 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
|
|
recctrl=`which rec_control`
|
|
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo '<<<app-powerdns_recursor>>>'
|
|
$recctrl get-all
|
|
fi
|