11 lines
170 B
Bash
11 lines
170 B
Bash
#!/bin/bash
|
|
|
|
cat > /etc/bind/named.conf.local <<EOL
|
|
zone "f01.com" {
|
|
type slave;
|
|
masters { 10.67.3.3; };
|
|
file "/etc/bind/Jarkom/f01.com";
|
|
};
|
|
EOL
|
|
|
|
service bind9 restart |