# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
property :repository, :kind_of => String
property :tag, :kind_of => String
property :reference, :kind_of => String
+property :compose, :kind_of => [TrueClass, FalseClass], :default => false
property :update_site, :kind_of => [TrueClass, FalseClass], :default => true
action :create do
only_if { ::File.exist?(extension_script) }
end
end
+
+ if new_resource.compose # ~FC023
+ execute "composer-#{new_resource.extension}" do
+ action :nothing
+ command "composer install --no-dev"
+ cwd extension_directory
+ user node[:mediawiki][:user]
+ group node[:mediawiki][:group]
+ subscribes :run, "git[#{extension_directory}]"
+ end
+ end
end
action :delete do