summaryrefslogtreecommitdiff
path: root/cmd/commands.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/commands.go')
-rw-r--r--cmd/commands.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/cmd/commands.go b/cmd/commands.go
index 36e9c04..89c4fe4 100644
--- a/cmd/commands.go
+++ b/cmd/commands.go
@@ -291,6 +291,30 @@ Downloads an updated Caddy binary with the same modules/plugins at the
latest versions. EXPERIMENTAL: May be changed or removed.`,
})
+ RegisterCommand(Command{
+ Name: "add-package",
+ Func: cmdAddPackage,
+ Usage: "<packages...>",
+ Short: "Adds Caddy packages (EXPERIMENTAL)",
+ Long: `
+Downloads an updated Caddy binary with the specified packages (module/plugin)
+added. Retains existing packages. Returns an error if the any of packages are
+already included. EXPERIMENTAL: May be changed or removed.
+`,
+ })
+
+ RegisterCommand(Command{
+ Name: "remove-package",
+ Func: cmdRemovePackage,
+ Usage: "<packages...>",
+ Short: "Removes Caddy packages (EXPERIMENTAL)",
+ Long: `
+Downloads an updated Caddy binaries without the specified packages (module/plugin).
+Returns an error if any of the packages are not included.
+EXPERIMENTAL: May be changed or removed.
+`,
+ })
+
}
// RegisterCommand registers the command cmd.