mirror of
https://github.com/octoleo/restic.git
synced 2024-11-16 10:05:25 +00:00
Merge branch 'openbsd_support' of https://github.com/ckeen/restic into openbsd_support
This commit is contained in:
commit
39c4b7cce2
36
node_openbsd.go
Normal file
36
node_openbsd.go
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
package restic
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (node *Node) OpenForReading() (*os.File, error) {
|
||||||
|
file, err := os.OpenFile(node.path, os.O_RDONLY, 0)
|
||||||
|
if os.IsPermission(err) {
|
||||||
|
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
||||||
|
}
|
||||||
|
return file, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *Node) createDevAt(path string) error {
|
||||||
|
return syscall.Mknod(path, syscall.S_IFBLK|0600, int(node.Device))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *Node) createCharDevAt(path string) error {
|
||||||
|
return syscall.Mknod(path, syscall.S_IFCHR|0600, int(node.Device))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *Node) createFifoAt(path string) error {
|
||||||
|
return syscall.Mkfifo(path, 0600)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
||||||
|
node.ChangeTime = time.Unix(stat.Ctim.Unix())
|
||||||
|
node.AccessTime = time.Unix(stat.Atim.Unix())
|
||||||
|
}
|
||||||
|
|
||||||
|
func changeTime(stat *syscall.Stat_t) time.Time {
|
||||||
|
return time.Unix(stat.Ctim.Unix())
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user