Disable packagekit during installation

This commit is contained in:
Manuel Thalmann 2023-01-23 20:32:33 +01:00
parent b4c0eabedc
commit d0d7b56584
4 changed files with 9 additions and 1 deletions

View file

@ -17,3 +17,5 @@ source "$configRoot/UserProfile/school.sh";
# Install equalizer
source "$configRoot/EasyEffects/SurfaceBook2/install.sh";
source "$utilRoot/postinstall.sh";

View file

@ -13,3 +13,5 @@ source "$utilRoot/prepare.sh";
source "$osRoot/PopOS/install.sh";
source "$softwareRoot/Collections/personal.sh";
source "$configRoot/UserProfile/personal.sh";
source "$utilRoot/postinstall.sh";

View file

@ -0,0 +1,3 @@
#!/bin/bash
sudo systemctl start packagekit;

View file

@ -1,4 +1,5 @@
#!/bin/bash
sudo apt update
sudo systemctl stop packagekit;
sudo apt update;
sudo apt upgrade -y;
sudo apt install dbus-x11;