Browse Source

update qubes.InstallUpdateGUI to support archlinux

Olivier MEDOC 8 years ago
parent
commit
b06c29c6dc
1 changed files with 2 additions and 0 deletions
  1. 2 0
      qubes-rpc/qubes.InstallUpdatesGUI

+ 2 - 0
qubes-rpc/qubes.InstallUpdatesGUI

@@ -8,6 +8,8 @@ if [ -e /etc/redhat-release ]; then
     xterm -title update -e su -l -c 'yum update; echo Done. Press Enter to exit.; read x'
 elif [ -e /etc/debian_version ]; then
     xterm -title update -e su -l -c 'apt-get update && apt-get -V dist-upgrade; echo Done. Press Enter to exit.; read x'
+elif [ -e /etc/arch-release ]; then
+    xterm -title update -e su -l -c 'pacman -Suy; echo Done. Press Enter to exit.; read x'
 else
     xterm -title update -e su -l -c 'echo Unsupported distribution, install updates manually; bash -i'
 fi