- [x] 完成log模块镜像构建、本地端到端写日志——收集——查询流程; - [x] 完成bind模块构建; - [x] 内置域名IP自动更新脚本,使用 /private/argus/etc目录下文件进行同步,容器启动时自动写IP,定时任务刷新更新DNS服务器IP和DNS规则; Co-authored-by: root <root@curious.host.com> Reviewed-on: #8 Reviewed-by: sundapeng <sundp@mail.zgclab.edu.cn>
32 lines
648 B
Bash
Executable File
32 lines
648 B
Bash
Executable File
#!/bin/sh
|
||
# update-dns.sh
|
||
# 从 /private/argus/etc/dns.conf 读取 IP,写入 /etc/resolv.conf
|
||
|
||
DNS_CONF="/private/argus/etc/dns.conf"
|
||
RESOLV_CONF="/etc/resolv.conf"
|
||
|
||
# 检查配置文件是否存在
|
||
if [ ! -f "$DNS_CONF" ]; then
|
||
echo "配置文件不存在: $DNS_CONF" >&2
|
||
exit 1
|
||
fi
|
||
|
||
# 生成 resolv.conf 内容
|
||
{
|
||
while IFS= read -r ip; do
|
||
# 跳过空行和注释
|
||
case "$ip" in
|
||
\#*) continue ;;
|
||
"") continue ;;
|
||
esac
|
||
echo "nameserver $ip"
|
||
done < "$DNS_CONF"
|
||
} > "$RESOLV_CONF".tmp
|
||
|
||
# 替换写入 /etc/resolv.conf
|
||
cat "$RESOLV_CONF".tmp > "$RESOLV_CONF"
|
||
rm -f "$RESOLV_CONF".tmp
|
||
|
||
echo "已更新 $RESOLV_CONF"
|
||
|