'wdcli backup': Rework backup process

This commit reworks the backup process to dynamically find the list of
components.
This commit is contained in:
Tom Wiesing 2022-09-17 16:30:32 +02:00
parent 55bee7422d
commit 5cd5ae9be2
No known key found for this signature in database
32 changed files with 361 additions and 279 deletions

View file

@ -17,7 +17,7 @@ func (Web) Name() string {
return "web"
}
func (web Web) Stack() component.Installable {
func (web Web) Stack() component.StackWithResources {
if web.Config.HTTPSEnabled() {
return web.stackHTTPS()
} else {
@ -29,8 +29,8 @@ func (web Web) Stack() component.Installable {
//go:embed web-https.env
var httpsResources embed.FS
func (web Web) stackHTTPS() component.Installable {
return web.MakeStack(component.Installable{
func (web Web) stackHTTPS() component.StackWithResources {
return web.MakeStack(component.StackWithResources{
Resources: httpsResources,
ContextPath: "web-https",
EnvPath: "web-https.env",
@ -45,8 +45,8 @@ func (web Web) stackHTTPS() component.Installable {
//go:embed web-http.env
var httpResources embed.FS
func (web Web) stackHTTP() component.Installable {
return web.MakeStack(component.Installable{
func (web Web) stackHTTP() component.StackWithResources {
return web.MakeStack(component.StackWithResources{
Resources: httpResources,
ContextPath: "web-http",
EnvPath: "web-http.env",