X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/d5911b021a544693d2a6a34a6f2acc7023b6de77..44961f1f6b5a7cd573ebf463ed66f12b5dba226b:/cookbooks/systemd/resources/service.rb diff --git a/cookbooks/systemd/resources/service.rb b/cookbooks/systemd/resources/service.rb index 313c80c11..8cd4406cf 100644 --- a/cookbooks/systemd/resources/service.rb +++ b/cookbooks/systemd/resources/service.rb @@ -29,7 +29,10 @@ property :condition_path_exists_glob, [String, Array] property :after, [String, Array] property :conflicts, [String, Array] property :wants, [String, Array] +property :requires, [String, Array] +property :joins_namespace_of, [String, Array] property :type, String, :is => %w[simple forking oneshot dbus notify idle] +property :notify_access, String, :is => %w[none main exec all] property :limit_nofile, Integer property :limit_as, [Integer, String] property :limit_cpu, [Integer, String] @@ -40,15 +43,25 @@ property :environment, Hash, :default => {} property :environment_file, [String, Hash] property :user, String property :group, String +property :dynamic_user, [true, false] property :working_directory, String -property :exec_start_pre, String -property :exec_start, String -property :exec_start_post, String -property :exec_stop, String +property :exec_start_pre, [String, Array] +property :exec_start, [String, Array] +property :exec_start_post, [String, Array] +property :exec_stop, [String, Array] +property :exec_stop_post, [String, Array] property :exec_reload, String +property :runtime_max_sec, Integer property :runtime_directory, String property :runtime_directory_mode, Integer -property :runtime_max_sec, Integer +property :state_directory, String +property :state_directory_mode, Integer +property :cache_directory, String +property :cache_directory_mode, Integer +property :logs_directory, String +property :logs_directory_mode, Integer +property :configuration_directory, String +property :configuration_directory_mode, Integer property :standard_input, String, :is => %w[null tty tty-force tty-fail socket] property :standard_output, String, @@ -58,11 +71,15 @@ property :standard_error, String, property :success_exit_status, [Integer, String, Array] property :restart, String, :is => %w[on-success on-failure on-abnormal on-watchdog on-abort always] +property :restart_sec, [Integer, String] property :protect_proc, String, :is => %w[noaccess invisible ptraceable default] property :proc_subset, String, :is => %w[all pid] +property :bind_paths, [String, Array] +property :bind_read_only_paths, [String, Array] property :capability_bounding_set, [String, Array] +property :ambient_capabilities, [String, Array] property :no_new_privileges, [true, false] property :protect_system, [true, false, String] property :protect_home, [true, false, String] @@ -113,6 +130,7 @@ action :create do service_variables[:protect_proc] = "invisible" unless property_is_set?(:protect_proc) service_variables[:proc_subset] = "pid" unless property_is_set?(:proc_subset) service_variables[:capability_bounding_set] = [] unless property_is_set?(:capability_bounding_set) + service_variables[:ambient_capabilities] = [] unless property_is_set?(:ambient_capabilities) service_variables[:no_new_privileges] = true unless property_is_set?(:no_new_privileges) service_variables[:protect_system] = "strict" unless property_is_set?(:protect_system) service_variables[:protect_home] = true unless property_is_set?(:protect_home) @@ -127,7 +145,7 @@ action :create do service_variables[:protect_kernel_modules] = true unless property_is_set?(:protect_kernel_modules) service_variables[:protect_kernel_logs] = true unless property_is_set?(:protect_kernel_logs) service_variables[:protect_control_groups] = true unless property_is_set?(:protect_control_groups) - service_variables[:restrict_address_families] = "none" unless property_is_set?(:restrict_address_families) + service_variables[:restrict_address_families] = [] unless property_is_set?(:restrict_address_families) service_variables[:restrict_namespaces] = true unless property_is_set?(:restrict_namespaces) service_variables[:lock_personality] = true unless property_is_set?(:lock_personality) service_variables[:memory_deny_write_execute] = true unless property_is_set?(:memory_deny_write_execute)