Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevithakannan2 committed Nov 6, 2024
1 parent e9aa592 commit 2891ccd
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions core/tabs/system-setup/arch/virtualization.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ setupLibvirt() {
"$ESCALATION_TOOL" usermod "$USER" -aG libvirt

for value in libvirt libvirt_guest; do
if ! grep -wq "$value" /etc/nsswitch.conf;then
if ! grep -wq "$value" /etc/nsswitch.conf; then
"$ESCALATION_TOOL" sed -i "/^hosts:/ s/$/ ${value}/" /etc/nsswitch.conf
fi
done
Expand All @@ -70,7 +70,7 @@ installLibvirt() {
if ! command_exists libvirtd; then
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm libvirt dmidecode
else
printf "%b\n" "${GREEN}Libvirt is already installed.${RC}"
printf "%b\n" "${GREEN}Libvirt is already installed.${RC}"
fi
setupLibvirt
}
Expand All @@ -85,16 +85,17 @@ main() {
printf "%b" "Enter your choice [1-5]: "
read -r CHOICE
case "$CHOICE" in
1) installQEMUDesktop ;;
2) installQEMUEmulators ;;
3) installLibvirt ;;
4) installVirtManager ;;
5) installQEMUDesktop
installQEMUEmulators
installLibvirt
installVirtManager
1) installQEMUDesktop ;;
2) installQEMUEmulators ;;
3) installLibvirt ;;
4) installVirtManager ;;
5)
installQEMUDesktop
installQEMUEmulators
installLibvirt
installVirtManager
;;
*) printf "%b\n" "${RED}Invalid choice.${RC}" && exit 1 ;;
*) printf "%b\n" "${RED}Invalid choice.${RC}" && exit 1 ;;
esac
}

Expand Down

0 comments on commit 2891ccd

Please sign in to comment.