a475da8bea
The network module's interfaces provider requires puppetx/filemapper which was not installed, causing catalog compilation failures with "no such file to load -- puppetx/filemapper". Also adds cronjob_generate-types.yaml to the kustomization so the generate-types CronJob is actually deployed. 💘 Generated with Crush Assisted-by: Claude Sonnet 4.6 via Crush <crush@charm.land>
8 lines
207 B
Bash
Executable File
8 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Installing additional Ruby gems..."
|
|
/opt/puppetlabs/puppet/bin/gem install toml
|
|
/opt/puppetlabs/puppet/bin/gem install filemapper
|
|
echo "Additional Ruby gems installed successfully"
|