mirror of
				https://github.com/restic/restic.git
				synced 2025-10-31 13:21:01 +00:00 
			
		
		
		
	 f4282aa6fd
			
		
	
	
		f4282aa6fd
		
	
	
	
	
		
			
			This is intended to prevent accidental modifications of data files. Marking the files as read-only was accidentally removed in #1258.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !windows
 | |
| 
 | |
| package local
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 
 | |
| 	"github.com/restic/restic/internal/fs"
 | |
| )
 | |
| 
 | |
| // set file to readonly
 | |
| func setFileReadonly(f string, mode os.FileMode) error {
 | |
| 	return fs.Chmod(f, mode&^0222)
 | |
| }
 |