Skip to content

Commit d69f113

Browse files
authoredNov 29, 2022
Updated nginx module (#39)
* Debugging updates * Fixed manifest issues * Updated manual to include release code * Added v * Update login action to v2 for docker * Updated make-image to the new version * Added plugin folder for Dockerfile * Fixed dockerfile for json * Added nginx * Added nginx configurations and types.Path * Updated help information * Updates * Added tokenizer * Added interpolation for strings * Added lexer * Updated expression parser * Updated nginx config * Updated nginx
1 parent f0fcc31 commit d69f113

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2368
-45
lines changed
 

‎.github/workflows/make-image-v2.yaml

100644100755
File mode changed.

‎cmd/server/main.go

+13-8
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
)
2020

2121
const (
22-
flagAddress = "address"
22+
flagAddress = "addr"
2323
flagPlugins = "plugins"
2424
flagVersion = "version"
2525
)
@@ -37,12 +37,6 @@ func main() {
3737
}
3838
}
3939

40-
// Check for version flag
41-
if flagset.Lookup(flagVersion).Value.(flag.Getter).Get().(bool) {
42-
version.PrintVersion(flagset.Output())
43-
os.Exit(0)
44-
}
45-
4640
// Get builtin plugin prototypes
4741
protos, err := BuiltinPlugins()
4842
if err != nil {
@@ -58,6 +52,15 @@ func main() {
5852
}
5953
}
6054

55+
// Check for version flag
56+
if flagset.Lookup(flagVersion).Value.(flag.Getter).Get().(bool) {
57+
version.PrintVersion(flagset.Output())
58+
for key := range protos {
59+
fmt.Fprintf(flagset.Output(), " Plugin: %q\n", key)
60+
}
61+
os.Exit(0)
62+
}
63+
6164
// Read resources using JSON
6265
var result error
6366
var resources []config.Resource
@@ -121,7 +124,9 @@ func main() {
121124
}()
122125

123126
// Print out information
124-
fmt.Fprintf(os.Stderr, "%s (%s)\n\n", version.GitSource, version.GitTag)
127+
if version.GitSource != "" && version.GitTag != "" {
128+
fmt.Fprintf(os.Stderr, "%s (%s)\n\n", version.GitSource, version.GitTag)
129+
}
125130
for _, key := range provider.Keys() {
126131
provider.Printf(ctx, "task: %s: %s\n", key, provider.Get(key))
127132
}

0 commit comments

Comments
 (0)
Please sign in to comment.