mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
d4ce312cc2
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
17 lines
280 B
Bash
Executable File
17 lines
280 B
Bash
Executable File
#!/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!"
|
|
|
|
exec $@
|