12 lines
		
	
	
		
			473 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			473 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# Copy this file in mounts.conf.d as <something>.conf, and add your volume settings.
 | 
						|
# You may repeat this for all your mounts
 | 
						|
 | 
						|
declare -A mount
 | 
						|
mount[mapper]='' # As in /dev/mapper/<?>
 | 
						|
mount[target]='' # Mount point (absolute path)
 | 
						|
mount[type]='ext4' # Filesystem type
 | 
						|
mount[friendly]='' # Optional friendly name for unit file Description
 | 
						|
mount[autolock]=0 # Set to 1 to enable autolock
 | 
						|
mount[timeout]=0 # Set to 1 to enable mount timeout (30 seconds)
 |