mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
19 lines
383 B
Bash
19 lines
383 B
Bash
#!/bin/bash
|
|
# This file was created by bootstrap-vz.
|
|
# See https://github.com/andsens/bootstrap-vz/blob/master/LICENSE for
|
|
# legal notices and disclaimers.
|
|
|
|
function uname {
|
|
if [[ $1 == '-r' ]]; then
|
|
echo "KERNEL_VERSION"
|
|
return 0
|
|
elif [[ $1 == '-m' ]]; then
|
|
echo "KERNEL_ARCH"
|
|
return 0
|
|
else
|
|
$(which uname) $@
|
|
fi
|
|
}
|
|
export -f uname
|
|
|
|
INSTALL_SCRIPT --nox11
|