20 lines
510 B
Bash
Executable File
20 lines
510 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# From the people who thought bash scripts in init.d were too complicated we get javascript snipits and xml based configuration files to set permissions, just say no.
|
|
apt remove -y --purge policykit-1
|
|
|
|
# This does a number of good things, removing:
|
|
# hplip
|
|
# policykit-1
|
|
# synaptic
|
|
# colord
|
|
# policykit-1-gnome
|
|
# packagekit
|
|
# packagekit-tools
|
|
# printer-driver-postscript-hp
|
|
|
|
cat > /et /apt/preferences.d/avoid-policykit.pref <<EOF
|
|
Package: policykit-1
|
|
Pin: origin ""
|
|
Pin-Priority: -10
|
|
EOF
|