gen-primaries.sh

来自「openswan」· Shell 代码 · 共 64 行

SH
64
字号
#!/bin/sh## This script is used to generate secondary lines for putting into the# nic machine's named.conf. It uses the file "zones.txt" as input.## This zone should contain lines like:#   zonename.foo.bar.             {beet,carrot}##echo "// These lines generated with the gen-primaries.sh script"cat zones.txt | sed -e '/^#/d' -e '/^$/d' | while read zone master restdo    echo 'zone "'$zone'" { type master;  file "/etc/bind/db.'$zone'.signed"; };'done## $Log: gen-primaries.sh,v $# Revision 1.2  2002/11/28 04:59:57  mcr# 	generate list of zones for "nic" machine.## Revision 1.1  2002/11/27 19:43:09  mcr# 	added . to list of zones.# 	changed named.conf to be primary on "nic"## Revision 1.1  2002/10/24 05:35:46  mcr# 	file/script to generate secondary list.##

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?