mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-11-04 02:44:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# create hostfs entry
 | 
						|
 | 
						|
set -ex
 | 
						|
 | 
						|
echo "I: Adding var/lib/snapd/hostfs"
 | 
						|
 | 
						|
PREFIX=binary/boot/filesystem.dir
 | 
						|
 | 
						|
(cd $PREFIX
 | 
						|
 install -m755 -d var/lib/snapd/hostfs
 | 
						|
)
 |