norgbackup/norg/restic/mount.nim

19 lines
646 B
Nim

import ../model/config_type
import execute
import strformat
proc mountSnapshot*(nc: NorgConfig, repo: Repository): int =
let snapshot = repo.path & "::" & nc.args.others[0]
let others = nc.args.others[1..^1]
let ok = runDiscard genCommand(cmd = "mount", repo = snapshot, others = others)
if ok == 0:
echo fmt"Mounted {snapshot} at {others[0]}"
else:
echo "Failed to mount ", snapshot
proc unmountSnapshot*(nc: NorgConfig): int =
let ok = runDiscard genCommand(cmd = "umount", repo = "", others = nc.args.others)
if ok == 0:
echo "Unmounted ", nc.args.others[0]
else:
echo "Failed to unmount ", nc.args.others[0]