]> git.openstreetmap.org Git - chef.git/commitdiff
otrs: move to naga
authorGrant Slater <github@firefishy.com>
Thu, 16 May 2024 01:58:35 +0000 (02:58 +0100)
committerGrant Slater <github@firefishy.com>
Thu, 16 May 2024 02:07:53 +0000 (03:07 +0100)
Signed-off-by: Grant Slater <github@firefishy.com>
13 files changed:
.github/workflows/test-kitchen.yml
.kitchen.yml
cookbooks/otrs/attributes/default.rb
cookbooks/otrs/recipes/debian.rb [deleted file]
cookbooks/otrs/recipes/default.rb
cookbooks/otrs/templates/default/apache-debian.erb [deleted file]
cookbooks/otrs/templates/default/apache.erb
roles/mail.rb
roles/naga.rb
roles/otrs.rb
roles/ridley.rb
test/data_bags/otrs-debian/passwords.json [deleted file]
test/integration/otrs-debian/inspec/apache_spec.rb [deleted file]

index bbcae2b54509053cc9e4b01093f3f7ce9219f13d..45bfbf9f09cbd16aebd663810f6e1cebce4cde56 100644 (file)
@@ -123,11 +123,15 @@ jobs:
             suite: osqa
           - os: debian-12
             suite: imagery-tiler
+          - os: debian-12
+            suite: otrs
         exclude:
           - suite: mailman
             os: ubuntu-2204
           - suite: osqa
             os: ubuntu-2204
+          - suite: otrs
+            os: ubuntu-2204
       fail-fast: false
     steps:
     - name: Login to GitHub Container Registry
index f439c27944ddc46e6fda45b31f64d7ad58102aa7..37cd3556a0972ae6a61ff8f36a54f67a7ba225d1 100644 (file)
@@ -283,9 +283,6 @@ suites:
   - name: otrs
     run_list:
       - recipe[otrs::default]
-  - name: otrs-debian
-    run_list:
-      - recipe[otrs::debian]
   - name: overpass
     run_list:
       - recipe[overpass::default]
index 037cae612359ddf2f25598d1eaeb85e9c1939d07..cb21e5ff85578aea57a1534af74811e9f3a98b38 100644 (file)
@@ -1,13 +1,12 @@
-default[:otrs][:version] = "6.0.48"
 default[:otrs][:user] = "otrs"
 default[:otrs][:group] = nil
-default[:otrs][:database_cluster] = "15/main"
+default[:otrs][:database_cluster] = "16/main"
 default[:otrs][:database_name] = "otrs"
 default[:otrs][:database_user] = "otrs"
 default[:otrs][:database_password] = "otrs"
 default[:otrs][:site] = "otrs"
 
-default[:postgresql][:versions] |= ["15"]
+default[:postgresql][:versions] |= ["16"]
 
 default[:accounts][:users][:otrs][:status] = :role
 default[:accounts][:groups][:"www-data"][:members] = [:otrs]
diff --git a/cookbooks/otrs/recipes/debian.rb b/cookbooks/otrs/recipes/debian.rb
deleted file mode 100644 (file)
index a51af6b..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-#
-# Cookbook:: otrs
-# Recipe:: debian
-#
-# Copyright:: 2024, OpenStreetMap Foundation
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     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,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-include_recipe "accounts"
-include_recipe "apache"
-include_recipe "exim"
-include_recipe "postgresql"
-include_recipe "tools"
-
-passwords = data_bag_item("otrs", "passwords")
-
-apache_module "perl" do
-  package "libapache2-mod-perl2"
-end
-
-apache_module "deflate"
-apache_module "headers"
-apache_module "rewrite"
-
-database_cluster = node[:otrs][:database_cluster]
-database_name = node[:otrs][:database_name]
-database_user = node[:otrs][:database_user]
-database_password = passwords[node[:otrs][:database_password]]
-site = node[:otrs][:site]
-site_aliases = node[:otrs][:site_aliases] || []
-
-postgresql_user database_user do
-  cluster database_cluster
-  password database_password
-end
-
-postgresql_database database_name do
-  cluster database_cluster
-  owner database_user
-end
-
-package "dbconfig-common"
-
-template "/etc/dbconfig-common/otrs2.conf" do
-  source "dbconfig.config.erb"
-  owner "root"
-  group "root"
-  mode "600"
-  variables :database_name => database_name,
-            :database_user => database_user,
-            :database_password => database_password,
-            :database_cluster => database_cluster
-end
-
-# Ensure the OTRS package in backports has a priority preference.
-apt_preference "otrs2" do
-  pin "release o=Debian Backports"
-  pin_priority "600"
-end
-
-apt_package "otrs2"
-
-# Ensure debconf is repopulated on a dbconfig change
-execute "dpkg-reconfigure-otrs2" do
-  action :nothing
-  command "dpkg-reconfigure -fnoninteractive otrs2"
-  subscribes :run, "template[/etc/dbconfig-common/otrs2.conf]"
-end
-
-# Disable deb otrs2 apache config
-apache_conf "otrs2" do
-  action :disable
-end
-
-# Disable deb otrs2 cron job
-file "/etc/cron.d/otrs2" do
-  action :delete
-  manage_symlink_source true
-end
-
-systemd_service "otrs" do
-  description "OTRS Daemon"
-  type "forking"
-  user "otrs"
-  group "www-data"
-  exec_start_pre "-/usr/share/otrs/bin/otrs.Daemon.pl stop" # Stop if race with deb cron
-  exec_start "/usr/share/otrs/bin/otrs.Daemon.pl start"
-  private_tmp true
-  protect_system "strict"
-  protect_home "read-only"
-  runtime_directory "otrs"
-  runtime_directory_mode 0o770
-  runtime_directory_preserve true
-  read_write_paths ["/var/lib/otrs", "/run/otrs", "/var/log/exim4", "/var/spool/exim4"]
-end
-
-service "otrs" do
-  action [:enable, :start]
-  subscribes :restart, "apt_package[otrs2]"
-  subscribes :restart, "systemd_service[otrs]"
-end
-
-ssl_certificate site do
-  domains [site] + site_aliases
-  notifies :reload, "service[apache2]"
-end
-
-apache_site site do
-  template "apache-debian.erb"
-  variables :aliases => site_aliases
-end
-
-template "/etc/cron.daily/otrs-backup" do
-  source "backup.cron.erb"
-  owner "root"
-  group "root"
-  mode "755"
-end
index f16931b328b6d76ae02b5e2b993674a6242e0138..7aae679537ceceb291f3df9157853891de21a487 100644 (file)
@@ -2,7 +2,7 @@
 # Cookbook:: otrs
 # Recipe:: default
 #
-# Copyright:: 2012, OpenStreetMap Foundation
+# Copyright:: 2024, OpenStreetMap Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -25,50 +25,6 @@ include_recipe "tools"
 
 passwords = data_bag_item("otrs", "passwords")
 
-package %w[
-  tar
-  bzip2
-  libapache-dbi-perl
-  libapache2-reload-perl
-  libarchive-zip-perl
-  libauthen-ntlm-perl
-  libauthen-sasl-perl
-  libcrypt-eksblowfish-perl
-  libcss-minifier-xs-perl
-  libdatetime-perl
-  libdbd-mysql-perl
-  libencode-hanextra-perl
-  libexcel-writer-xlsx-perl
-  libgd-gd2-perl
-  libgd-graph-perl
-  libgd-text-perl
-  libhtml-parser-perl
-  libio-socket-ssl-perl
-  libjavascript-minifier-xs-perl
-  libjson-perl
-  libjson-xs-perl
-  liblocale-codes-perl
-  libmail-imapclient-perl
-  libmoo-perl
-  libnet-dns-perl
-  libnet-ldap-perl
-  libpdf-api2-perl
-  libsisimai-perl
-  libsoap-lite-perl
-  libspreadsheet-xlsx-perl
-  libtemplate-perl
-  libtext-csv-xs-perl
-  libtext-diff-perl
-  libtimedate-perl
-  libxml-libxml-perl
-  libxml-libxml-simple-perl
-  libxml-libxslt-perl
-  libxml-parser-perl
-  libxml-simple-perl
-  libyaml-libyaml-perl
-  libyaml-perl
-]
-
 apache_module "perl" do
   package "libapache2-mod-perl2"
 end
@@ -77,8 +33,6 @@ apache_module "deflate"
 apache_module "headers"
 apache_module "rewrite"
 
-version = node[:otrs][:version]
-user = node[:otrs][:user]
 database_cluster = node[:otrs][:database_cluster]
 database_name = node[:otrs][:database_name]
 database_user = node[:otrs][:database_user]
@@ -96,67 +50,64 @@ postgresql_database database_name do
   owner database_user
 end
 
-remote_file "#{Chef::Config[:file_cache_path]}/znuny-#{version}.tar.bz2" do
-  source "https://download.znuny.org/releases/znuny-#{version}.tar.bz2"
-  not_if { ::File.exist?("/opt/znuny-#{version}") }
-end
+package "dbconfig-common"
 
-execute "untar-znuny-#{version}" do
-  command "tar jxf #{Chef::Config[:file_cache_path]}/znuny-#{version}.tar.bz2"
-  cwd "/opt"
-  user "root"
+template "/etc/dbconfig-common/otrs2.conf" do
+  source "dbconfig.config.erb"
+  owner "root"
   group "root"
-  not_if { ::File.exist?("/opt/znuny-#{version}") }
+  mode "600"
+  variables :database_name => database_name,
+            :database_user => database_user,
+            :database_password => database_password,
+            :database_cluster => database_cluster
 end
 
-config = edit_file "/opt/znuny-#{version}/Kernel/Config.pm.dist" do |line|
-  line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
-  line.gsub!(/^( *)\$Self->{DatabaseUser} = 'otrs'/, "\\1$Self->{DatabaseUser} = '#{database_user}'")
-  line.gsub!(/^( *)\$Self->{DatabasePw} = 'some-pass'/, "\\1$Self->{DatabasePw} = '#{database_password}'")
-  line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
-  line.gsub!(/^( *\$Self->{DatabaseDSN} = "DBI:mysql:)/, "#\\1")
-  line.gsub!(/^#( *\$Self->{DatabaseDSN} = "DBI:Pg:.*;host=)/, "\\1")
-  line.gsub!(/^( *)# (\$Self->{CheckMXRecord} = 0)/, "\\1\\2")
-  line.gsub!(/^( *)# \$Self->{SessionUseCookie} = 0/, "\\1$Self->{SessionCheckRemoteIP} = 0")
-
-  line
+# Ensure the OTRS package in backports has a priority preference.
+apt_preference "otrs2" do
+  pin "release o=Debian Backports"
+  pin_priority "600"
 end
 
-file "/opt/znuny-#{version}/Kernel/Config.pm" do
-  owner user
-  group "www-data"
-  mode "664"
-  content config
-  notifies :restart, "service[otrs]"
-end
+apt_package "otrs2"
 
-execute "/opt/znuny-#{version}/bin/otrs.SetPermissions.pl" do
+# Ensure debconf is repopulated on a dbconfig change
+execute "dpkg-reconfigure-otrs2" do
   action :nothing
-  command "/opt/znuny-#{version}/bin/otrs.SetPermissions.pl --otrs-user=#{user} --web-group=www-data /opt/znuny-#{version}"
-  user "root"
-  group "root"
-  subscribes :run, "execute[untar-znuny-#{version}]"
+  command "dpkg-reconfigure -fnoninteractive otrs2"
+  subscribes :run, "template[/etc/dbconfig-common/otrs2.conf]"
+end
+
+# Disable deb otrs2 apache config
+apache_conf "otrs2" do
+  action :disable
 end
 
-link "/opt/otrs" do
-  to "/opt/znuny-#{version}"
+# Disable deb otrs2 cron job
+file "/etc/cron.d/otrs2" do
+  action :delete
+  manage_symlink_source true
 end
 
 systemd_service "otrs" do
   description "OTRS Daemon"
   type "forking"
   user "otrs"
-  group "otrs"
-  exec_start "/opt/otrs/bin/otrs.Daemon.pl start"
+  group "www-data"
+  exec_start_pre "-/usr/share/otrs/bin/otrs.Daemon.pl stop" # Stop if race with deb cron
+  exec_start "/usr/share/otrs/bin/otrs.Daemon.pl start"
   private_tmp true
   protect_system "strict"
-  protect_home true
-  read_write_paths ["/opt/znuny-#{version}/var", "/var/log/exim4", "/var/spool/exim4"]
+  protect_home "read-only"
+  runtime_directory "otrs"
+  runtime_directory_mode 0o770
+  runtime_directory_preserve true
+  read_write_paths ["/var/lib/otrs", "/run/otrs", "/var/log/exim4", "/var/spool/exim4"]
 end
 
 service "otrs" do
   action [:enable, :start]
-  subscribes :restart, "link[/opt/otrs]"
+  subscribes :restart, "apt_package[otrs2]"
   subscribes :restart, "systemd_service[otrs]"
 end
 
diff --git a/cookbooks/otrs/templates/default/apache-debian.erb b/cookbooks/otrs/templates/default/apache-debian.erb
deleted file mode 100644 (file)
index 1ec34fd..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-# DO NOT EDIT - This file is being maintained by Chef
-
-<VirtualHost *:80>
-  ServerName <%= @name %>
-<% @aliases.each do |alias_name| -%>
-  ServerAlias <%= alias_name %>
-<% end -%>
-  ServerAdmin webmaster@openstreetmap.org
-
-  CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
-  ErrorLog /var/log/apache2/<%= @name %>-error.log
-
-  RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
-  RedirectPermanent / https://<%= @name %>/
-</VirtualHost>
-<% unless @aliases.empty? -%>
-
-<VirtualHost *:443>
-  ServerName <%= @aliases.first %>
-<% @aliases.drop(1).each do |alias_name| -%>
-  ServerAlias <%= alias_name %>
-<% end -%>
-  ServerAdmin webmaster@openstreetmap.org
-
-  SSLEngine on
-  SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
-  SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
-
-  CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
-  ErrorLog /var/log/apache2/<%= @name %>-error.log
-
-  RedirectPermanent / https://<%= @name %>/
-</VirtualHost>
-<% end -%>
-
-<VirtualHost *:443>
-  ServerName <%= @name %>
-  ServerAdmin webmaster@openstreetmap.org
-
-  CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
-  ErrorLog /var/log/apache2/<%= @name %>-error.log
-
-  SSLEngine on
-  SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
-  SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
-
-  ScriptAlias /otrs "/usr/share/otrs/bin/cgi-bin/"
-  Alias /otrs-web "/usr/share/otrs/var/httpd/htdocs/"
-  RedirectMatch ^/$ /otrs/index.pl
-
-  Perlrequire /usr/share/otrs/scripts/apache2-perl-startup.pl
-
-  PerlModule Apache2::Reload
-  PerlInitHandler Apache2::Reload
-
-
-  <Location /otrs>
-    ErrorDocument 403 /otrs/index.pl
-               ErrorDocument 404 /otrs/index.pl
-    SetHandler  perl-script
-    PerlResponseHandler ModPerl::Registry
-    Options +ExecCGI
-    PerlOptions +ParseHeaders
-    PerlOptions +SetupEnv
-    Require all granted
-  </Location>
-
-  <Location /otrs/nph-genericinterface.pl>
-    PerlOptions -ParseHeaders
-  </Location>
-</VirtualHost>
-
-<Directory "/usr/share/otrs/bin/cgi-bin/">
-    AllowOverride None
-    Options +ExecCGI -Includes
-    Require all granted
-</Directory>
-
-<Directory "/usr/share/otrs/var/httpd/htdocs/">
-  AllowOverride None
-  Require all granted
-
-  # Make sure CSS and JS files are read as UTF8 by the browsers.
-  AddCharset UTF-8 .css
-  AddCharset UTF-8 .js
-
-  # Set explicit mime type for woff fonts since it is relatively new and apache may not know about it.
-  AddType application/font-woff .woff
-</Directory>
-
-# Cache css-cache for 30 days
-<Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css-cache">
-    <FilesMatch "\.(css|CSS)$">
-        Header set Cache-Control "max-age=2592000, must-revalidate"
-    </FilesMatch>
-</Directory>
-
-<Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css/thirdparty">
-    <FilesMatch "\.(css|CSS|woff|svg)$">
-        Header set Cache-Control "max-age=14400, must-revalidate"
-    </FilesMatch>
-</Directory>
-
-<Directory "/usr/share/otrs/var/httpd/htdocs/js/js-cache">
-    <FilesMatch "\.(js|JS)$">
-        Header set Cache-Control "max-age=2592000, must-revalidate"
-    </FilesMatch>
-</Directory>
-
-<Directory "/usr/share/otrs/var/httpd/htdocs/js/thirdparty/">
-    <FilesMatch "\.(js|JS)$">
-        Header set Cache-Control "max-age=14400, must-revalidate"
-    </FilesMatch>
-</Directory>
index a3605a966d968e2509189b7d4222c995ecedd79b..17f0df1180d990f0eedb8f5f53458b497e82f40b 100644 (file)
@@ -11,7 +11,7 @@
   ErrorLog /var/log/apache2/<%= @name %>-error.log
 
   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
-  RedirectPermanent / https://otrs.openstreetmap.org/
+  RedirectPermanent / https://<%= @name %>/
 </VirtualHost>
 <% unless @aliases.empty? -%>
 
   SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
   SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
 
-  ScriptAlias /otrs/ /opt/otrs/bin/cgi-bin/
-  Alias /otrs-web/ /opt/otrs/var/httpd/htdocs/
+  ScriptAlias /otrs "/usr/share/otrs/bin/cgi-bin/"
+  Alias /otrs-web "/usr/share/otrs/var/httpd/htdocs/"
   RedirectMatch ^/$ /otrs/index.pl
 
-  PerlRequire /opt/otrs/scripts/apache2-perl-startup.pl
+  Perlrequire /usr/share/otrs/scripts/apache2-perl-startup.pl
 
   PerlModule Apache2::Reload
   PerlInitHandler Apache2::Reload
-  PerlModule Apache2::RequestRec
 
   <Location /otrs>
     ErrorDocument 403 /otrs/index.pl
   </Location>
 </VirtualHost>
 
-<Directory /opt/otrs/bin/cgi-bin>
-  AllowOverride None
-  Options +ExecCGI -Includes
-  Require all granted
+<Directory "/usr/share/otrs/bin/cgi-bin/">
+    AllowOverride None
+    Options +ExecCGI -Includes
+    Require all granted
 </Directory>
 
-<Directory /opt/otrs/var/httpd/htdocs>
+<Directory "/usr/share/otrs/var/httpd/htdocs/">
   AllowOverride None
   Require all granted
+
+  # Make sure CSS and JS files are read as UTF8 by the browsers.
+  AddCharset UTF-8 .css
+  AddCharset UTF-8 .js
+
+  # Set explicit mime type for woff fonts since it is relatively new and apache may not know about it.
+  AddType application/font-woff .woff
+</Directory>
+
+# Cache css-cache for 30 days
+<Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css-cache">
+    <FilesMatch "\.(css|CSS)$">
+        Header set Cache-Control "max-age=2592000, must-revalidate"
+    </FilesMatch>
+</Directory>
+
+<Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css/thirdparty">
+    <FilesMatch "\.(css|CSS|woff|svg)$">
+        Header set Cache-Control "max-age=14400, must-revalidate"
+    </FilesMatch>
 </Directory>
 
-<Directory /opt/otrs/var/httpd/htdocs/skins/*/*/css-cache>
-  <FilesMatch "\.(css|CSS)$">
-    Header set Cache-Control "max-age=2592000 must-revalidate"
-  </FilesMatch>
+<Directory "/usr/share/otrs/var/httpd/htdocs/js/js-cache">
+    <FilesMatch "\.(js|JS)$">
+        Header set Cache-Control "max-age=2592000, must-revalidate"
+    </FilesMatch>
 </Directory>
 
-<Directory /opt/otrs/var/httpd/htdocs/js/js-cache>
-  <FilesMatch "\.(js|JS)$">
-    Header set Cache-Control "max-age=2592000 must-revalidate"
-  </FilesMatch>
+<Directory "/usr/share/otrs/var/httpd/htdocs/js/thirdparty/">
+    <FilesMatch "\.(js|JS)$">
+        Header set Cache-Control "max-age=14400, must-revalidate"
+    </FilesMatch>
 </Directory>
index de74af25ae1bd47765e3a8bdaa6eacded76b5fd3..362adbe9ec752daffe8e74844e7c193df3ca9c5d 100644 (file)
@@ -47,7 +47,7 @@ default_attributes(
       :otrs => {
         :comment => "otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
-        :host => "ridley.ucl.openstreetmap.org"
+        :host => "naga.dub.openstreetmap.org"
       },
       :join => {
         :comment => "join.osmfoundation.org",
index 2586aaf4a194fe35551afefa0a3b75d51f47041d..4026bcac7e0ec874c1153b8935c559f60666c874 100644 (file)
@@ -28,19 +28,6 @@ default_attributes(
         }
       }
     }
-  },
-  :otrs => {
-    :site => "test.otrs.openstreetmap.org",
-    :site_aliases => ["test.otrs.osm.org"],
-    :database_cluster => "16/main"
-  },
-  :postgresql => {
-    :versions => ["16"],
-    :settings => {
-      "16" => {
-        :port => 5433
-      }
-    }
   }
 )
 
@@ -59,5 +46,5 @@ run_list(
   "recipe[hot]",
   "recipe[ideditor]",
   "recipe[dmca]",
-  "recipe[otrs::debian]"
+  "role[otrs]"
 )
index 94d4c4cd291120f93af8a57d10d26c5ee2a9112f..53ca0319ed413ce8a7cf07b47a071b5623bb08ef 100644 (file)
@@ -9,109 +9,109 @@ default_attributes(
         :comment => "otrs@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["otrs"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_data => {
         :comment => "data@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["data"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Data Working Group'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Data Working Group'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_membership => {
         :comment => "membership@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["membership"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Membership Working Group'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Membership Working Group'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_membership_osmf_talk_owner => {
         :comment => "osmf-talk-owner@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["osmf-talk-owner"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Membership Working Group::osmf-talk'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Membership Working Group::osmf-talk'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_legal => {
         :comment => "legal@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["legal"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_legal_privacy => {
         :comment => "legal-privacy@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["legal-privacy"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group::Privacy'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group::Privacy'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_legal_questions => {
         :comment => "legal-questions@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["legal-questions"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group::Legal Questions'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group::Legal Questions'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_legal_trademarks => {
         :comment => "legal-trademarks@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["legal-trademarks"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group::Trademarks'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Licensing Working Group::Trademarks'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_sotm_program => {
         :comment => "sotm-program@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["sotm-program"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'State of the Map:Program'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'State of the Map:Program'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_communications => {
         :comment => "communications@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["communications"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Communications Working Group'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Communications Working Group'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_communications_freebies => {
         :comment => "freebies@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["freebies"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Communications Working Group::Freebies'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Communications Working Group::Freebies'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       },
       :otrs_support => {
         :comment => "support@otrs.openstreetmap.org",
         :domains => ["otrs.openstreetmap.org"],
         :local_parts => ["support"],
-        :command => "/opt/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Technical Support'",
+        :command => "/usr/share/otrs/bin/otrs.Console.pl Maint::PostMaster::Read --target-queue 'Technical Support'",
         :user => "otrs",
         :group => "www-data",
-        :home_directory => "/opt/otrs"
+        :home_directory => "/usr/share/otrs"
       }
     }
   },
index 08a97417dc6e79fdf6b7844b178988aed6472a76..7500247f33aa861339c1bfebc420a9b9bd70581a 100644 (file)
@@ -2,6 +2,11 @@ name "ridley"
 description "Master role applied to ridley"
 
 default_attributes(
+  :accounts => {
+    :users => {
+      :otrs => { :status => :role }
+    }
+  },
   :apache => {
     :mpm => "event",
     :event => {
@@ -43,6 +48,5 @@ run_list(
   "role[foundation]",
   "role[stateofthemap]",
   "role[blog]",
-  "role[otrs]",
   "recipe[dhcpd]"
 )
diff --git a/test/data_bags/otrs-debian/passwords.json b/test/data_bags/otrs-debian/passwords.json
deleted file mode 100644 (file)
index ccb5fec..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-{
-  "id": "passwords",
-  "otrs": "database-password"
-}
diff --git a/test/integration/otrs-debian/inspec/apache_spec.rb b/test/integration/otrs-debian/inspec/apache_spec.rb
deleted file mode 100644 (file)
index 8006330..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-describe package("apache2") do
-  it { should be_installed }
-end
-
-describe service("apache2") do
-  it { should be_enabled }
-  it { should be_running }
-end
-
-describe port(80) do
-  it { should be_listening }
-  its("protocols") { should cmp "tcp" }
-end
-
-describe port(443) do
-  it { should be_listening }
-  its("protocols") { should cmp "tcp" }
-end