mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 13:22:28 +00:00
Update linutil-installer.sh
This commit is contained in:
parent
54f7e462ec
commit
34b0dfc485
|
@ -27,15 +27,19 @@ installLinutil() {
|
||||||
;;
|
;;
|
||||||
zypper)
|
zypper)
|
||||||
printf '%s\n' 'detecting flavor'
|
printf '%s\n' 'detecting flavor'
|
||||||
[ zypper lr | grep -q "Tumbleweed" ] && flavor="Tumbleweed" || flavor="Slowroll"
|
if zypper lr | grep -Fq Tumbleweed
|
||||||
|
then flavor=Tumbleweed
|
||||||
|
else flavor=Slowroll
|
||||||
|
fi
|
||||||
|
|
||||||
printf '%b%s%b\n' "flavor detected is ${GREEN}" "$flavor" "$RC"
|
printf '%b%s%b\n' "flavor detected is ${GREEN}" "$flavor" "$RC"
|
||||||
printf "\n" "setting up repos"
|
printf "\n" "setting up repos"
|
||||||
if [[ $flavor == Tumbleweed ]]
|
if [ "$flavor" = Tumbleweed ]
|
||||||
then
|
then
|
||||||
"$ESCALATION_TOOL" "$PACKAGER" --gpg-auto-import-keys addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Tumbleweed/home:solomoncyj.repo
|
"$ESCALATION_TOOL" "$PACKAGER" --gpg-auto-import-keys addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Tumbleweed/home:solomoncyj.repo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $flavor == "Slowroll" ]
|
if [ "$flavor" = Slowroll ]
|
||||||
then
|
then
|
||||||
"$ESCALATION_TOOL" "$PACKAGER" --gpg-auto-import-keys addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Slowroll/home:solomoncyj.repo
|
"$ESCALATION_TOOL" "$PACKAGER" --gpg-auto-import-keys addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Slowroll/home:solomoncyj.repo
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user