Disable packagekit during installation
This commit is contained in:
parent
ff844a7f00
commit
27ef5b5456
4 changed files with 9 additions and 1 deletions
|
@ -17,3 +17,5 @@ source "$configRoot/UserProfile/school.sh";
|
|||
|
||||
# Install equalizer
|
||||
source "$configRoot/EasyEffects/SurfaceBook2/install.sh";
|
||||
|
||||
source "$utilRoot/postinstall.sh";
|
||||
|
|
|
@ -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";
|
||||
|
|
3
scripts/Scripts/postinstall.sh
Normal file
3
scripts/Scripts/postinstall.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
sudo systemctl start packagekit;
|
||||
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue