#!/bin/sh # Copyright 2021 Stan Grishin (stangri@melmac.ca) # shellcheck disable=SC1091,SC2039,SC2034,SC3043 readonly PKG_VERSION='dev-test' readonly PROG=/usr/sbin/nebula readonly packageName='nebula-proto' [ -x "$PROG" ] || { log "Main nebula executable '/usr/sbin/nebula' not found"; exit 1; } [ -n "$INCLUDE_ONLY" ] || { . /lib/functions.sh . /lib/functions/network.sh . ../netifd-proto.sh init_proto "$@" } log() { logger -t "$packageName" "$*"; } # https://gist.github.com/pkuczynski/8665367 # shellcheck disable=SC2086,SC2155 parse_yaml() { local prefix=$2 local s='[[:space:]]*' w='[a-zA-Z0-9_-]*' fs="$(echo @|tr @ '\034'|tr -d '\015')" sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \ -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" "$1" | awk "-F$fs" '{ indent = length($1)/2; vname[indent] = $2; for (i in vname) {if (i > indent) {delete vname[i]}} if (length($3) > 0) { vn=""; for (i=0; i/dev/null | grep inet | awk '{print $2}' | awk -F "/" '{print $1}')" log "Running ${interface} from $(basename "$config_file") with addresses: ${addresses}." for address in ${addresses}; do case "${address}" in *:*/*) proto_add_ipv6_address "${address%%/*}" "${address##*/}" ;; *.*/*) proto_add_ipv4_address "${address%%/*}" "${address##*/}" ;; *:*) proto_add_ipv6_address "${address%%/*}" "128" ;; *.*) proto_add_ipv4_address "${address%%/*}" "32" ;; esac done proto_send_update "$interface" } proto_nebula_teardown() { local interface="$1" proto_kill_command "${interface}" log "Killed interface ${interface}." } [ -n "$INCLUDE_ONLY" ] || { add_protocol nebula }