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
Finish conversion of postgresql_acls_to_resources_hash function
In puppetlabs#1129 the 3
functions from this module were ported to the modern function API and
namespaced. None of the boilerplate was fixed up, tests weren't
updated, documentation wasn't updated etc.
This commit finishes the work for the
`postgresql_acls_to_resources_hash` function.
The existing function documentation made it pretty clear that this
function is for internal use only. As such, I've marked it `@api
private` and haven't created a non-namespaced shim (like I've being
doing with the other functions in this module).
Copy file name to clipboardExpand all lines: REFERENCE.md
+62-99Lines changed: 62 additions & 99 deletions
Original file line number
Diff line number
Diff line change
@@ -61,14 +61,18 @@ _Private Classes_
61
61
62
62
**Functions**
63
63
64
+
_Public Functions_
65
+
64
66
*[`postgresql::default`](#postgresqldefault): This function pull default values from the `params` class or `globals` class if the value is not present in `params`.
65
-
*[`postgresql::postgresql_acls_to_resources_hash`](#postgresqlpostgresql_acls_to_resources_hash): This internal function translates the ipv(4|6)acls format into a resource
66
67
*[`postgresql::postgresql_escape`](#postgresqlpostgresql_escape): This function safely escapes a string using a consistent random tag
67
68
*[`postgresql::postgresql_password`](#postgresqlpostgresql_password): This function returns the postgresql password hash from the clear text username / password
68
-
*[`postgresql_acls_to_resources_hash`](#postgresql_acls_to_resources_hash): This internal function translates the ipv(4|6)acls format into a resource suitable for create_resources. It is not intended to be used outsid
69
69
*[`postgresql_escape`](#postgresql_escape): This function safely escapes a string using a consistent random tag
70
70
*[`postgresql_password`](#postgresql_password): This function returns the postgresql password hash from the clear text username / password
71
71
72
+
_Private Functions_
73
+
74
+
*`postgresql::postgresql_acls_to_resources_hash`: This internal function translates the ipv(4|6)acls format into a resource suitable for create_resources.
75
+
72
76
**Tasks**
73
77
74
78
*[`sql`](#sql): Allows you to execute arbitary SQL
@@ -1097,6 +1101,14 @@ Sets PostgreSQL version
1097
1101
1098
1102
Default value: `undef`
1099
1103
1104
+
##### `extra_systemd_config`
1105
+
1106
+
Data type: `Any`
1107
+
1108
+
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