feat(stdlib): added borg server custom promise

This commit is contained in:
Julien Dessaux 2024-06-10 23:22:33 +02:00
parent 1a4192b5c9
commit 07db4ab5bd
Signed by: adyxax
GPG key ID: F92E51B86E07177E
2 changed files with 109 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package borg
import gonf "git.adyxax.org/adyxax/gonf/v2/pkg"
func installBorgPackage() gonf.Status {
packag := gonf.Package("borgbackup")
packag.Resolve()
return packag.Status()
}