aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/environment-to-ini/environment-to-ini.go
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/environment-to-ini/environment-to-ini.go')
-rw-r--r--contrib/environment-to-ini/environment-to-ini.go31
1 files changed, 1 insertions, 30 deletions
diff --git a/contrib/environment-to-ini/environment-to-ini.go b/contrib/environment-to-ini/environment-to-ini.go
index 230ed58269..e472384a95 100644
--- a/contrib/environment-to-ini/environment-to-ini.go
+++ b/contrib/environment-to-ini/environment-to-ini.go
@@ -5,7 +5,6 @@ package main
import (
"os"
- "strings"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
@@ -13,9 +12,6 @@ import (
"github.com/urfave/cli"
)
-// EnvironmentPrefix environment variables prefixed with this represent ini values to write
-const EnvironmentPrefix = "GITEA"
-
func main() {
app := cli.NewApp()
app.Name = "environment-to-ini"
@@ -70,15 +66,6 @@ func main() {
Value: "",
Usage: "Destination file to write to",
},
- cli.BoolFlag{
- Name: "clear",
- Usage: "Clears the matched variables from the environment",
- },
- cli.StringFlag{
- Name: "prefix, p",
- Value: EnvironmentPrefix,
- Usage: "Environment prefix to look for - will be suffixed by __ (2 underscores)",
- },
}
app.Action = runEnvironmentToIni
err := app.Run(os.Args)
@@ -99,9 +86,7 @@ func runEnvironmentToIni(c *cli.Context) error {
log.Fatal("Failed to load custom conf '%s': %v", setting.CustomConf, err)
}
- prefixGitea := c.String("prefix") + "__"
- suffixFile := "__FILE"
- changed := setting.EnvironmentToConfig(cfg, prefixGitea, suffixFile, os.Environ())
+ changed := setting.EnvironmentToConfig(cfg, os.Environ())
// try to save the config file
destination := c.String("out")
@@ -116,19 +101,5 @@ func runEnvironmentToIni(c *cli.Context) error {
}
}
- // clear Gitea's specific environment variables if requested
- if c.Bool("clear") {
- for _, kv := range os.Environ() {
- idx := strings.IndexByte(kv, '=')
- if idx < 0 {
- continue
- }
- eKey := kv[:idx]
- if strings.HasPrefix(eKey, prefixGitea) {
- _ = os.Unsetenv(eKey)
- }
- }
- }
-
return nil
}