mirror of
https://github.com/linuxserver/docker-wireguard.git
synced 2026-02-05 03:27:32 +08:00
skip header install if already present
This commit is contained in:
parent
98516feb83
commit
a96f5bab3a
@ -20,7 +20,7 @@ else
|
||||
fi
|
||||
|
||||
# install headers if necessary
|
||||
if [ "$SKIP_COMPILE" != "true" ]; then
|
||||
if [ "$SKIP_COMPILE" != "true" ] && [ ! -e /lib/modules/$(uname -r)/build ]; then
|
||||
echo "**** Attempting kernel header install ****"
|
||||
apt-get update
|
||||
if apt-cache show linux-headers-$(uname -r) 2&>1 >/dev/null; then
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user