mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
commit
90c50dc99c
28
src/commands/system-setup/4-remove-snaps.sh
Normal file
28
src/commands/system-setup/4-remove-snaps.sh
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. ./common-script.sh
|
||||||
|
|
||||||
|
removeSnaps() {
|
||||||
|
case $PACKAGER in
|
||||||
|
pacman)
|
||||||
|
sudo ${PACKAGER} -Rns snapd
|
||||||
|
;;
|
||||||
|
apt-get|nala)
|
||||||
|
sudo ${PACKAGER} autoremove --purge snapd
|
||||||
|
if [ "$ID" = ubuntu ]; then
|
||||||
|
sudo apt-mark hold snapd
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
dnf)
|
||||||
|
sudo ${PACKAGER} remove snapd
|
||||||
|
;;
|
||||||
|
zypper)
|
||||||
|
sudo ${PACKAGER} remove snapd
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "removing snapd not implemented for this package manager"
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
removeSnaps
|
|
@ -74,6 +74,10 @@ impl CustomList {
|
||||||
name: "Global Theme",
|
name: "Global Theme",
|
||||||
command: Command::LocalFile("system-setup/3-global-theme.sh"),
|
command: Command::LocalFile("system-setup/3-global-theme.sh"),
|
||||||
},
|
},
|
||||||
|
ListNode {
|
||||||
|
name: "Remove Snaps",
|
||||||
|
command: Command::LocalFile("system-setup/4-remove-snaps.sh"),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
ListNode {
|
ListNode {
|
||||||
name: "Security",
|
name: "Security",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user