Skip to content

Commit a9b2fbb

Browse files
committed
add prefix to descriptions
1 parent fe396dc commit a9b2fbb

25 files changed

+26
-26
lines changed

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* `puppetdb::database::default_read_grant`: grant read permissions to $database_read_only_username by default, for new tables created by $database_username
4040
* `puppetdb::database::postgresql_ssl_rules`: manage the pg_ident.conf and pg_hba.conf files
4141
* `puppetdb::database::read_grant`: grant read-only permissions to $database_read_only_username for all objects in $schema of $database_name
42-
* `puppetdb::database::read_only_user`: A define type to manage the creation of a read-only postgres users. In particular, it manages the necessary grants to enable such a user to h
42+
* `puppetdb::database::read_only_user`: manage the creation of a read-only postgres users
4343

4444
### Resource types
4545

manifests/database/default_read_grant.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grant read permissions to $database_read_only_username by default, for new tables created by $database_username
1+
# @summary grant read permissions to $database_read_only_username by default, for new tables created by $database_username
22
#
33
# @api private
44
define puppetdb::database::default_read_grant (

manifests/database/postgresql.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# create the PuppetDB postgresql database
1+
# @summary create the PuppetDB postgresql database
22
#
33
# @param listen_addresses
44
# The `listen_address` is a comma-separated list of hostnames or IP addresses on

manifests/database/postgresql_ssl_rules.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage the pg_ident.conf and pg_hba.conf files
1+
# @summary manage the pg_ident.conf and pg_hba.conf files
22
#
33
# @api private
44
define puppetdb::database::postgresql_ssl_rules (

manifests/database/read_grant.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grant read-only permissions to $database_read_only_username for all objects in $schema of $database_name
1+
# @summary grant read-only permissions to $database_read_only_username for all objects in $schema of $database_name
22
#
33
# @api private
44
define puppetdb::database::read_grant (

manifests/database/read_only_user.pp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# A define type to manage the creation of a read-only postgres users.
1+
# @summary manage the creation of a read-only postgres users
2+
#
23
# In particular, it manages the necessary grants to enable such a user
34
# to have read-only access to any existing objects as well as changes
45
# the default access privileges so read-only access is maintained when

manifests/database/ssl_configuration.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# configure SSL for the PuppetDB postgresql database
1+
# @summary configure SSL for the PuppetDB postgresql database
22
#
33
# @api private
44
class puppetdb::database::ssl_configuration (

manifests/globals.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# global configuration class for PuppetDB
1+
# @summary global configuration class for PuppetDB
22
#
33
# @param version
44
# The version of the `puppetdb` package that should be installed. You may specify

manifests/init.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage PuppetDB
1+
# @summary manage PuppetDB
22
#
33
# @param listen_address
44
# The address that the web server should bind to for HTTP requests. Defaults to

manifests/master/config.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage the puppet configuration on the primary
1+
# @summary manage the puppet configuration on the primary
22
#
33
# @param puppetdb_server
44
# The dns name or ip of the PuppetDB server. Defaults to the hostname of the

manifests/master/puppetdb_conf.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage the puppetdb.conf file on the puppet primary
1+
# @summary manage the puppetdb.conf file on the puppet primary
22
#
33
# @api private
44
class puppetdb::master::puppetdb_conf (

manifests/master/report_processor.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage the installation of the report processor on the primary
1+
# @summary manage the installation of the report processor on the primary
22
#
33
# @api private
44
class puppetdb::master::report_processor (

manifests/master/routes.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manages the routes configuration file on the master
1+
# @summary manages the routes configuration file on the master
22
#
33
# @api private
44
class puppetdb::master::routes (

manifests/master/storeconfigs.pp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# configure the puppet master to enable storeconfigs and to use puppetdb as
2-
# the storeconfigs backend
1+
# @summary configure the puppet master to enable storeconfigs and to use puppetdb as the storeconfigs backend
32
#
43
# @api private
54
class puppetdb::master::storeconfigs (

manifests/params.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# default configuration settings
1+
# @summary default configuration settings
22
#
33
# @api private
44
class puppetdb::params inherits puppetdb::globals {

manifests/server.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage the PuppetDB server
1+
# @summary manage the PuppetDB server
22
#
33
# @param listen_address
44
# The address that the web server should bind to for HTTP requests. Defaults to

manifests/server/command_processing.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage puppetdb config ini
1+
# @summary manage puppetdb config ini
22
#
33
# @api private
44
class puppetdb::server::command_processing (

manifests/server/database.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage puppetdb database ini
1+
# @summary manage puppetdb database ini
22
#
33
# @api private
44
class puppetdb::server::database (

manifests/server/firewall.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage puppetdb firewall rules
1+
# @summary manage puppetdb firewall rules
22
#
33
# @api private
44
class puppetdb::server::firewall (

manifests/server/global.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage puppetdb global setting
1+
# @summary manage puppetdb global setting
22
#
33
# @api private
44
class puppetdb::server::global (

manifests/server/jetty.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# configures puppetdb jetty ini
1+
# @summary configures puppetdb jetty ini
22
#
33
# @api private
44
class puppetdb::server::jetty (

manifests/server/puppetdb.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage puppetdb ini
1+
# @summary manage puppetdb ini
22
#
33
# @api private
44
class puppetdb::server::puppetdb (

manifests/server/read_database.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage puppetdb read_database ini
1+
# @summary manage puppetdb read_database ini
22
#
33
# @api private
44
class puppetdb::server::read_database (

manifests/server/validate_db.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# validates the database connection
1+
# @summary validates the database connection
22
#
33
# @api private
44
class puppetdb::server::validate_db (

manifests/server/validate_read_db.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# validates the read only database connection
1+
# @summary validates the read only database connection
22
#
33
# @api private
44
class puppetdb::server::validate_read_db (

0 commit comments

Comments
 (0)