tinc: Add possibility to populate more config variables via uci
Signed-off-by: Erwan MAS <erwan@mas.nom.fr>
This commit is contained in:
parent
b86383f038
commit
f7ce67e29d
2 changed files with 24 additions and 9 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=tinc
|
||||
PKG_VERSION:=1.1-git
|
||||
PKG_RELEASE=$(PKG_SOURCE_VERSION)-1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=http://tinc-vpn.org/git/tinc
|
||||
|
|
|
@ -88,26 +88,41 @@ prepare_host() {
|
|||
[ "$2" != "$n" ] && return 1
|
||||
fi
|
||||
|
||||
HOST_CONF_FILE="$TMP_TINC/$n/hosts/$s"
|
||||
MANDATORY_PARAM_IN_UCI=0
|
||||
[ ! -f "/etc/tinc/$n/hosts/$s" ] && {
|
||||
config_get pk "$s" "PublicKey"
|
||||
config_get na "$s" "Name"
|
||||
if [ -n "$pk" -a -n "$na" ] ; then
|
||||
HOST_CONF_FILE="$TMP_TINC/$n/hosts/$na"
|
||||
MANDATORY_PARAM_IN_UCI=1
|
||||
fi
|
||||
}
|
||||
|
||||
# host disabled?
|
||||
section_enabled "$s" || {
|
||||
[ -f "$TMP_TINC/$n/hosts/$s" ] && rm "$TMP_TINC/$n/hosts/$s"
|
||||
[ -f "$HOST_CONF_FILE" ] && rm "$HOST_CONF_FILE"
|
||||
return 1
|
||||
}
|
||||
|
||||
[ ! -f "/etc/tinc/$n/hosts/$s" ] && {
|
||||
echo -n "tinc: Warning, public key for $s for network $n "
|
||||
echo -n "missing in /etc/tinc/$n/hosts/$s, "
|
||||
echo "skipping configuration of $s"
|
||||
return 1
|
||||
if [ "$MANDATORY_PARAM_IN_UCI" -eq 1 ] ; then
|
||||
touch "$HOST_CONF_FILE" ;
|
||||
else
|
||||
echo -n "tinc: Warning, public key for $s for network $n "
|
||||
echo -n "missing in /etc/tinc/$n/hosts/$s, "
|
||||
echo "skipping configuration of $s"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
# append flags
|
||||
append_conf_bools "$s" "$TMP_TINC/$n/hosts/$s" \
|
||||
append_conf_bools "$s" "$HOST_CONF_FILE" \
|
||||
ClampMSS IndirectData PMTUDiscovery TCPOnly
|
||||
|
||||
# append params
|
||||
append_conf_params "$s" "$TMP_TINC/$n/hosts/$s" \
|
||||
Address Cipher Compression Digest MACLength PMTU \
|
||||
append_conf_params "$s" "$HOST_CONF_FILE" \
|
||||
Address Cipher Compression Digest Ed25519PublicKey MACLength Name PMTU \
|
||||
Port PublicKey PublicKeyFile Subnet
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue