You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add puppet/systemd module
* remove systemd daemon reload and raise minimal puppet version to 6.1
* remove old "drop-in file" removal, was in place 3 years now
* move systemd drop-in file handling to seperate define
* Implement recent feedback
* define is now private
* rename parameter in define call
* fix unit tests
* fix rubocop complains
* fix path, set default fact
* fix systemd drop in file, adding template parameters to systemd define
* added reason for drop in file in a comment
Copy file name to clipboardExpand all lines: manifests/server.pp
+2
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@
15
15
# @param service_provider Overrides the default PostgreSQL service provider.
16
16
# @param service_reload Overrides the default reload command for your PostgreSQL service.
17
17
# @param service_status Overrides the default status check command for your PostgreSQL service.
18
+
# @param systemd_drop_in_ensure sets the Systemd drop-in file to present or absent
18
19
# @param default_database Specifies the name of the default database to connect with. On most systems this is 'postgres'.
19
20
# @param default_connect_settings Specifies a hash of environment variables used when connecting to a remote server. Becomes the default for other defined types, such as postgresql::server::role.
Copy file name to clipboardExpand all lines: manifests/server/instance/config.pp
+2
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@
29
29
# @param logdir PostgreSQL log directory
30
30
# @param service_name Overrides the default PostgreSQL service name.
31
31
# @param service_enable Enable the PostgreSQL service
32
+
# @param systemd_drop_in_ensure sets the Systemd drop-in file to present or absent
32
33
# @param log_line_prefix PostgreSQL log line prefix
33
34
# @param timezone Set timezone for the PostgreSQL instance
34
35
# @param extra_systemd_config Adds extra config to systemd config file, can for instance be used to add extra openfiles. This can be a multi line string
0 commit comments