29 lines
798 B
Bash
29 lines
798 B
Bash
#!/usr/bin/env bash
|
|
|
|
MODULE_NETWORK_IDENTITY_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$MODULE_NETWORK_IDENTITY_DIR/../../.." && pwd)"
|
|
|
|
# shellcheck source=lib/ui.sh
|
|
source "$PROJECT_ROOT/lib/ui.sh"
|
|
# shellcheck source=lib/log.sh
|
|
source "$PROJECT_ROOT/lib/log.sh"
|
|
# shellcheck source=core/runtime.sh
|
|
source "$PROJECT_ROOT/core/runtime.sh"
|
|
# shellcheck source=modules/network/identity/module.sh
|
|
source "$MODULE_NETWORK_IDENTITY_DIR/module.sh"
|
|
|
|
runtime_init "$PROJECT_ROOT"
|
|
log_init
|
|
|
|
if ! test -f /etc/postinstall-debian/network-identity.conf; then
|
|
printf 'network-identity test SKIPPED: module configuration not applied\n'
|
|
exit 0
|
|
fi
|
|
|
|
if module_identity_test; then
|
|
printf 'network-identity test OK\n'
|
|
else
|
|
printf 'network-identity test FAILED\n' >&2
|
|
exit 1
|
|
fi
|