Skip to content

Commit

Permalink
Version 0.20.0: adding the --no-document option
Browse files Browse the repository at this point in the history
  • Loading branch information
aursu committed Sep 18, 2024
1 parent ae536f8 commit f79e136
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 6 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -506,14 +506,15 @@ node on Puppet server.

**Known Issues**

## Release 0.19.12
## Release 0.20.0

**Features**

**Bugfixes**

* SSH access configuration compilation fix
* Puppet platform repository URL fix
* r10k installation for Puppet 7
* Fixed SSH access configuration compilation issue
* Corrected Puppet platform repository URL
* Added support for r10k installation on Puppet 7
* Fixed `gem install` command by adding the `--no-document` option

**Known Issues**
2 changes: 1 addition & 1 deletion manifests/r10k/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
include puppet::r10k::dependencies

exec { 'r10k-installation':
command => "${gem_path} install ${r10k_package_name}",
command => "${gem_path} install --no-document ${r10k_package_name}",
creates => $r10k_path,
}

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aursu-puppet",
"version": "0.19.12",
"version": "0.20.0",
"author": "aursu",
"summary": "Puppet server installation and setup",
"license": "Apache-2.0",
Expand Down
31 changes: 31 additions & 0 deletions tests/compose/rocky/9/docker-compose.puppet7.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
services:
puppet:
build:
context: .
dockerfile: tests/redhat/Dockerfile
args:
os: $RL9
platform: puppet7
privileged: true
cap_add:
- SYS_ADMIN
tmpfs:
- /run
- /tmp
user: root
image: "aursu/rockylinux:${RL9TAG}-puppet7"
puppetdb:
build:
context: .
dockerfile: tests/redhat/Dockerfile
args:
os: $RL9
platform: puppet7
privileged: true
cap_add:
- SYS_ADMIN
tmpfs:
- /run
- /tmp
user: root
image: "aursu/rockylinux:${RL9TAG}-puppet7"

0 comments on commit f79e136

Please sign in to comment.