8 lines
187 B
Bash
Executable file
8 lines
187 B
Bash
Executable file
# Remove apport while we are at it
|
|
# TODO: Test for
|
|
if command -v apport &> /dev/null; then
|
|
echo "Removing apport"
|
|
sudo nala purge -y apport
|
|
else
|
|
echo "Skipping removing apport"
|
|
fi
|