From 5367b53570f4973a4a5a15aaa1c0cfdb4bb813cc Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Thu, 2 Nov 2017 07:58:29 -0400 Subject: [PATCH] finish template fixes for installer --- contrib/backends/srndv2/src/srnd/installer.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/contrib/backends/srndv2/src/srnd/installer.go b/contrib/backends/srndv2/src/srnd/installer.go index 4a9a40a..e928b69 100644 --- a/contrib/backends/srndv2/src/srnd/installer.go +++ b/contrib/backends/srndv2/src/srnd/installer.go @@ -368,7 +368,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleDBTypePost, model: prepareDefaultModel, - templateName: "inst_db.mustache", + templateName: "inst_db", } postgresDB := &dialogNode{ @@ -376,7 +376,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handlePostgresDBPost, model: preparePostgresDBModel, - templateName: "inst_postgres_db.mustache", + templateName: "inst_postgres_db", } root.children["postgres"] = postgresDB @@ -385,7 +385,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleNNTPPost, model: prepareNNTPModel, - templateName: "inst_nntp.mustache", + templateName: "inst_nntp", } postgresDB.children["next"] = nntp @@ -394,7 +394,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleCryptoPost, model: prepareCryptoModel, - templateName: "inst_crypto.mustache", + templateName: "inst_crypto", } nntp.children["next"] = crypto @@ -403,7 +403,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleBinPost, model: prepareBinModel, - templateName: "inst_bins.mustache", + templateName: "inst_bins", } crypto.children["next"] = bins @@ -412,7 +412,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleCacheTypePost, model: prepareDefaultModel, - templateName: "inst_cache.mustache", + templateName: "inst_cache", } bins.children["next"] = cache @@ -421,7 +421,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleFrontendPost, model: prepareFrontendModel, - templateName: "inst_frontend.mustache", + templateName: "inst_frontend", } cache.children["next"] = frontend @@ -430,7 +430,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleAPIPost, model: prepareAPIModel, - templateName: "inst_api.mustache", + templateName: "inst_api", } frontend.children["json"] = api @@ -439,7 +439,7 @@ func initInstallerTree() *dialogNode { children: make(map[string]*dialogNode), post: handleKeyPost, model: prepareKeyModel, - templateName: "inst_key.mustache", + templateName: "inst_key", } frontend.children["next"] = key api.children["next"] = key