Add IP forwarding to entrypoint
Some checks failed
Test / test (push) Has been cancelled

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-16 22:58:43 +00:00
parent 69062bd828
commit 767526054e
9 changed files with 4 additions and 908 deletions

View File

@@ -1,14 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
# Installs and enables the cisco-vpn systemd unit on the machine where you run this.
# Intended to be executed inside the VM.
UNIT_SRC_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
UNIT_NAME="cisco-vpn-connect.service"
sudo install -m 0644 "$UNIT_SRC_DIR/$UNIT_NAME" "/etc/systemd/system/$UNIT_NAME"
sudo systemctl daemon-reload
sudo systemctl enable --now "$UNIT_NAME"
sudo systemctl --no-pager --full status "$UNIT_NAME" || true