Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
still working on #51
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed May 16, 2017
1 parent 5da80a7 commit 77363b8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .release/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Changelog
- [x] wait for ES to fully start (not just a dumb 10 sec wait)
- [x] monitor logs to output important info as to why it might not start (not enough RAM etc)
- [x] add `~/.malice/logs/elastic.log` to catch ES errors
- [x] fix `plugin update --all` to only update **enabled** plugins

Plugin list
-----------
Expand Down
2 changes: 1 addition & 1 deletion .release/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.2
v0.3.3
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $ malice elk
#### Install/Update all Plugins

```bash
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock malice/engine plugin update
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock malice/engine plugin update --all
```

#### Scan a file
Expand Down
2 changes: 1 addition & 1 deletion commands/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func cmdRemovePlugin(name string) error {
func cmdUpdatePlugin(name string, all bool, source bool) error {
docker := client.NewDockerClient()
if all {
plugins.UpdateAllPlugins(docker)
plugins.UpdateEnabledPlugins(docker)
} else {
if name == "" {
log.Error("Please enter a valid plugin name.")
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Install/Update all Plugins
--------------------------

```bash
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock malice/engine plugin update
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock malice/engine plugin update --all
```

Scan a file
Expand Down

0 comments on commit 77363b8

Please sign in to comment.