This commit is contained in:
Stephan Raabe
2024-02-16 08:02:26 +01:00
parent ca85294d10
commit ea26ad635b
17 changed files with 55 additions and 20 deletions

9
scripts/unlock-pacman.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
sleep 1
if [ -f /var/lib/pacman/db.lck ]; then
sudo rm /var/lib/pacman/db.lck
echo ":: Unlock complete"
else
echo ":: Pacman database is not locked"
fi
sleep 3