mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
17 lines
239 B
Bash
17 lines
239 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
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
|