Skip to content

Commit

Permalink
support passenger-6.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
ichylinux committed Dec 11, 2022
1 parent 0bb9428 commit 84d625d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/itamae/plugin/recipe/passenger/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
rm -f passenger-release-#{passenger_version}.tar.gz
wget https://github.com/phusion/passenger/archive/release-#{passenger_version}.tar.gz -O passenger-release-#{passenger_version}.tar.gz
EOF
not_if "test -e /opt/passenger/#{passenger_version}/INSTALLED || echo #{::File.read(::File.join(::File.dirname(__FILE__), "passenger-6.0.4_sha256.txt")).strip} | sha256sum -c"
not_if "test -e /opt/passenger/#{passenger_version}/INSTALLED || echo #{::File.read(::File.join(::File.dirname(__FILE__), "passenger-#{passenger_version}_sha256.txt")).strip} | sha256sum -c"
end

directory '/opt/passenger' do
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1055750ce51c11a0db4fb717fcaf00601b466e23a88181792f871e6859569900 passenger-release-6.0.15.tar.gz
4 changes: 2 additions & 2 deletions lib/itamae/plugin/recipe/passenger/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ module Itamae
module Plugin
module Recipe
module Passenger
VERSION = '0.1.4'
VERSION = '0.1.5'

PASSENGER_VERSION = [
PASSENGER_VERSION_MAJOR = '6',
PASSENGER_VERSION_MINOR = '0',
PASSENGER_VERSION_REVISION = '12'
PASSENGER_VERSION_REVISION = '15'
].join('.')
end
end
Expand Down

0 comments on commit 84d625d

Please sign in to comment.