Install `nginx-build` when finding a newer version.
This commit is contained in:
parent
dc6b5a2f01
commit
40e7c26656
|
@ -50,12 +50,17 @@ rescue
|
||||||
raise 'Cannot connect to http://github.com.'
|
raise 'Cannot connect to http://github.com.'
|
||||||
end
|
end
|
||||||
|
|
||||||
# Download `nginx-build`:
|
|
||||||
execute "wget #{nginxbuild} -O #{TARBALL}"
|
|
||||||
|
|
||||||
execute "tar xf #{TARBALL} && chown webadm:webadm #{NGINXBUILD}" do
|
# バージョン確認して、アップデート必要かどうか確認
|
||||||
user USER
|
result = run_command("/home/webadm/nginx-build/nginx-build --version | grep #{tag_version}", error: false)
|
||||||
cwd WORKDIR
|
if result.exit_status != 0
|
||||||
|
# Download `nginx-build`:
|
||||||
|
execute "wget #{nginxbuild} -O #{TARBALL}"
|
||||||
|
|
||||||
|
execute "tar xf #{TARBALL} && chown webadm:webadm #{NGINXBUILD}" do
|
||||||
|
user USER
|
||||||
|
cwd WORKDIR
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Deploy `configure.sh`:
|
# Deploy `configure.sh`:
|
||||||
|
|
Loading…
Reference in New Issue