#!/bin/sh -e # # 2020 Timothée Floure (timothee.floure@ungleich.ch) # # This file is part of cdist. # # cdist is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cdist is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cdist. If not, see . # os=$(cat "$__global/explorer/os") case "$os" in alpine) __package unbound --state present ;; *) printf "Your operating system (%s) is currently not supported by this type (%s)\n" "$os" "${__type##*/}" >&2 printf "Please contribute an implementation for it if you can.\n" >&2 exit 1 ;; esac # Required parameters: FORWARD_ADDRS=$(cat "$__object/parameter/forward-addr") export FORWARD_ADDRS # Optional parameters: if [ -f "$__object/parameter/dns64-prefix" ]; then DNS64_PREFIX=$(cat "$__object/parameter/dns64-prefix") export DNS64_PREFIX fi if [ -f "$__object/parameter/interface" ]; then INTERFACES=$(cat "$__object/parameter/interface") export INTERFACES fi if [ -f "$__object/parameter/access-control" ]; then ACCESS_CONTROLS=$(cat "$__object/parameter/access-control") export ACCESS_CONTROLS fi if [ -f "$__object/parameter/rc-interface" ]; then RC_INTERFACE=$(cat "$__object/parameter/rc-interface") export RC_INTERFACE fi if [ -f "$__object/parameter/local-data" ]; then LOCAL_DATA=$(cat "$__object/parameter/local-data") export LOCAL_DATA fi # Boolean parameters: if [ -f "$__object/parameter/disable-ip4" ] && \ [ -f "$__object/parameter/disable-ip6" ]; then echo "--disable-ip4 and --disable-ip6 cannot be used at the same time." >&2 exit 1 fi if [ -f "$__object/parameter/disable-ip4" ]; then export DO_IP4='no' else export DO_IP4='yes' fi if [ -f "$__object/parameter/disable-ip6" ]; then export DO_IP6='no' else export DO_IP6='yes' fi if [ -f "$__object/parameter/enable-rc" ]; then export RC_ENABLE='yes' else export RC_ENABLE='no' fi # Certs for remote control: export RC_SERVER_KEY_FILE='/etc/unbound/unbound_server.key' export RC_SERVER_CERT_FILE='/etc/unbound/unbound_server.pem' export RC_CONTROL_KEY_FILE='/etc/unbound/unbound_control.key' export RC_CONTROL_CERT_FILE='/etc/unbound/unbound_control.pem' # Generate and deploy configuration files. source_file="$__object/files/unbound.conf" target_file="/etc/unbound/unbound.conf" mkdir -p "$__object/files" "$__type/files/unbound.conf.sh" > "$source_file" require="__package/unbound" __file "$target_file" \ --source "$source_file" \ --owner root \ --mode 644