14 lines
		
	
	
		
			504 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			504 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
const (
 | 
						|
	boxNamePattern = `[a-zA-Z0-9\-_\.]`
 | 
						|
 | 
						|
	zfsManagedPropertyName = "biz.siteop:managed"
 | 
						|
	zfsSnapshotPattern     = `^(?P<Schedule>hourly|daily|weekly|monthly|yearly|adhoc)\-(?P<Timestamp>[0-9]{4}-[0-9]{2}-[0-9]{2}_[0-9]{2}.[0-9]{2}.[0-9]{2})\-\-(?P<Expiration>forever|([0-9]+(h|d|m|y))+)$`
 | 
						|
	zfsSnapshotDatePattern = "2006-01-02_15.04.05"
 | 
						|
 | 
						|
	serverAddr     = ":8080"
 | 
						|
	serverUsername = "admin"
 | 
						|
	serverPassword = "8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918" //admin
 | 
						|
)
 |