X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/741593ee2bf203c9261f604d094e3d8e621698a8..99afb74d84a97c8b5e4877300d22e8d771a2caec:/cookbooks/otrs/recipes/default.rb diff --git a/cookbooks/otrs/recipes/default.rb b/cookbooks/otrs/recipes/default.rb index b1a5a0107..e43a89244 100644 --- a/cookbooks/otrs/recipes/default.rb +++ b/cookbooks/otrs/recipes/default.rb @@ -17,26 +17,30 @@ # limitations under the License. # -include_recipe "tools" -include_recipe "postgresql" +include_recipe "accounts" include_recipe "apache" +include_recipe "postgresql" +include_recipe "tools" passwords = data_bag_item("otrs", "passwords") package "libapache2-mod-perl2" package "libapache2-reload-perl" -package "libgd-gd2-perl" -package "libgd-graph-perl" -package "libgd-text-perl" -package "libjson-xs-perl" -package "libmail-imapclient-perl" -package "libnet-ldap-perl" -package "libpdf-api2-perl" -package "libsoap-lite-perl" -package "libyaml-libyaml-perl" -package "libcrypt-eksblowfish-perl" -package "libtemplate-perl" +package %w[ + libcrypt-eksblowfish-perl + libdatetime-perl + libgd-gd2-perl + libgd-graph-perl + libgd-text-perl + libjson-xs-perl + libmail-imapclient-perl + libnet-ldap-perl + libpdf-api2-perl + libsoap-lite-perl + libtemplate-perl + libyaml-libyaml-perl +] apache_module "headers" @@ -104,14 +108,6 @@ execute "/opt/otrs/bin/otrs.SetPermissions.pl" do only_if { File.stat("/opt/otrs/README.md").uid != Etc.getpwnam("otrs").uid } end -execute "/opt/otrs/bin/otrs.RebuildConfig.pl" do - action :run - command "/opt/otrs/bin/otrs.RebuildConfig.pl" - user "root" - group "root" - not_if { ::File.exist?("/opt/otrs/Kernel/Config/Files/ZZZAAuto.pm") } -end - execute "/opt/otrs/bin/Cron.sh" do action :nothing command "/opt/otrs/bin/Cron.sh restart"