dockerfiles/wireguard/install/entrypoint.sh

18 lines
308 B
Bash
Raw Normal View History

#!/bin/sh
set -e
(
cd /wireguard/src
echo "Building the wireguard kernel module..."
make module
echo "Installing the wireguard kernel module..."
make module-install
echo "Cleaning up..."
make clean
)
echo "Successfully built and installed the wireguard kernel module!"
# shellcheck disable=SC2068
exec $@