mirror of
				https://github.com/vim/vim.git
				synced 2025-11-03 09:44:48 -05:00 
			
		
		
		
	Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
		
			
				
	
	
		
			14 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/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
 |