mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Even more OracleLinux debugging
add more disk space by default
This commit is contained in:
parent
3bfd7e1ad9
commit
b1f4c08704
1 changed files with 6 additions and 2 deletions
8
quickget
8
quickget
|
@ -757,6 +757,10 @@ EOF
|
|||
echo "disk_size=\"32G\"" >> "${OS}-${RELEASE}.conf"
|
||||
fi
|
||||
|
||||
if [ "${OS}" == "oraclelinux" ]; then
|
||||
echo "disk_size=\"32G\"" >> "${OS}-${RELEASE}.conf"
|
||||
fi
|
||||
|
||||
if [ "${OS}" == "zorin" ]; then
|
||||
case ${RELEASE} in
|
||||
15education64|15edulite64|15edulite32)
|
||||
|
@ -1044,8 +1048,8 @@ function get_oraclelinux() {
|
|||
|
||||
local arch="x86_64"
|
||||
|
||||
local majorver=${RELEASE,0,1}
|
||||
local minorver=${RELEASE,2,1}
|
||||
local majorver=${RELEASE::1}
|
||||
local minorver=${RELEASE:2:1}
|
||||
|
||||
echo $RELEASE
|
||||
echo $majorver
|
||||
|
|
Loading…
Reference in a new issue