summaryrefslogtreecommitdiffstats
path: root/ci/remove_snap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/remove_snap.sh')
-rw-r--r--ci/remove_snap.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/ci/remove_snap.sh b/ci/remove_snap.sh
new file mode 100644
index 0000000000..a812307d3b
--- /dev/null
+++ b/ci/remove_snap.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/env sh
+pushd /etc/apt/preferences.d/
+cat > nosnap.pref <<EOF
+# To prevent repository packages from triggering the installation of snap,
+# this file forbids snapd from being installed by APT.
+
+Package: snapd
+Pin: release a=*
+Pin-Priority: -10
+EOF
+popd
+snap remove --purge $(snap list | awk '!/^Name|^core/ {print $1}')
+apt-get purge -y snapd