Added backup machinery
This commit is contained in:
22
backup.go
Normal file
22
backup.go
Normal file
@ -0,0 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"qurl/storage"
|
||||
"time"
|
||||
"fmt"
|
||||
"path"
|
||||
"os"
|
||||
)
|
||||
|
||||
func manageBackup(stor storage.Storage, dir string, interval int){
|
||||
for {
|
||||
time.Sleep(time.Duration(interval) * time.Second)
|
||||
fname := fmt.Sprintf("qurl-%s.backup",
|
||||
time.Now().Format("20060102150405"))
|
||||
|
||||
err := stor.Backup(path.Join(dir, fname))
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Backup failure: %s\n", err.Error())
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user