summaryrefslogtreecommitdiff
path: root/stdlib/backups/borg/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/backups/borg/client.go')
-rw-r--r--stdlib/backups/borg/client.go20
1 files changed, 14 insertions, 6 deletions
diff --git a/stdlib/backups/borg/client.go b/stdlib/backups/borg/client.go
index a203ae2..95d8d0d 100644
--- a/stdlib/backups/borg/client.go
+++ b/stdlib/backups/borg/client.go
@@ -33,13 +33,18 @@ type BorgClient struct {
status gonf.Status
}
+var borgClient *BorgClient = nil
+
func (b *BorgClient) IfRepaired(p ...gonf.Promise) gonf.Promise {
b.chain = append(b.chain, p...)
return b
}
func (b *BorgClient) Promise() *BorgClient {
- gonf.MakeCustomPromise(b).Promise()
+ if b.status == gonf.DECLARED {
+ b.status = gonf.PROMISED
+ gonf.MakeCustomPromise(b).Promise()
+ }
return b
}
@@ -101,12 +106,15 @@ func (b BorgClient) Status() gonf.Status {
}
func Client() *BorgClient {
- return &BorgClient{
- chain: nil,
- jobs: make(map[string]*Job),
- path: "/etc/borg/",
- status: gonf.PROMISED,
+ if borgClient == nil {
+ borgClient = &BorgClient{
+ chain: nil,
+ jobs: make(map[string]*Job),
+ path: "/etc/borg/",
+ status: gonf.DECLARED,
+ }
}
+ return borgClient
}
func (b *BorgClient) Add(name string, path string, privateKey []byte, hostname string) *BorgClient {