From 50948acee4c9a04f42462132897114f15dff062d Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Mon, 15 Nov 2021 10:24:45 -0800 Subject: [PATCH] Fix profile syntax errors --- dotfiles/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/profile b/dotfiles/profile index e13a289..ec983de 100755 --- a/dotfiles/profile +++ b/dotfiles/profile @@ -28,7 +28,7 @@ fi # Setup for libvirt if [ -z "${LIBVIRT_DEFAULT_URI}" ] ; then - if [ "$(id -u)" == "0" ] || (id -g -n | grep -q "\blibvirt\b") ; then + if [ "$(id -u)" = "0" ] || (id -g -n | grep -q "\blibvirt\b") ; then LIBVIRT_DEFAULT_URI="qemu:///system" export LIBVIRT_DEFAULT_URI fi