Skip to content

Commit

Permalink
init_master.lua: check for find and awk too
Browse files Browse the repository at this point in the history
start_sockproc requires find:
```
bin/resty-auto-ssl/.start_sockproc-wrapped: line 31: find: command not found
```

… and dehydrated invokes awk.

So check for both.
  • Loading branch information
flokli committed Jan 20, 2021
1 parent 86d3c94 commit 81f19da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/resty/auto-ssl/init_master.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ local str = require "resty.string"

local function check_dependencies()
local runtime_dependencies = {
"awk",
"bash",
"curl",
"diff",
"find",
"grep",
"mktemp",
"openssl",
Expand Down

0 comments on commit 81f19da

Please sign in to comment.