Skip to content

Commit d428212

Browse files
committed
Merge remote-tracking branch 'origin/main' into 167-ion-split-proxy
2 parents e4c94aa + eed227b commit d428212

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/puppet.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
name: Puppet module
22
on:
33
push:
4-
paths:
5-
- .github/workflows/puppet.yaml
6-
- puppet/**
4+
branches:
5+
- main
76
pull_request: {} # any target
87
schedule:
98
- cron: '0 0 * * 0' # weekly
109

1110
jobs:
1211
prep:
1312
name: Download modules
14-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1514
steps:
1615
- name: Checkout repository
1716
uses: actions/checkout@v4
@@ -32,7 +31,7 @@ jobs:
3231
./puppet/prep.sh
3332
3433
puppet-lint:
35-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-24.04
3635
permissions:
3736
contents: read # for checkout to fetch code
3837
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
@@ -53,7 +52,7 @@ jobs:
5352
run: gem install puppet-lint
5453

5554
- name: Run puppet-lint
56-
run: puppet-lint . --sarif > puppet-lint-results.sarif
55+
run: puppet-lint puppet --sarif --ignore-paths 'puppet/modules/anms/files/*' > puppet-lint-results.sarif
5756

5857
- name: Upload analysis results to GitHub
5958
if: always()

puppet/hiera.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ hierarchy:
55
- name: "Override of any other data"
66
path: "override.yaml"
77
- name: "Per-host data"
8-
path: "fqdn/%{fqdn}.yaml"
8+
path: "fqdn/%{facts.networking.fqdn}.yaml"
99
- name: "Per-OS defaults"
1010
path: "os/%{facts.os.family}.yaml"
1111
- name: "Common data"

puppet/modules/anms/manifests/hostenv.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
class { 'selinux': }
2020
package { 'udica':
21-
ensure => 'installed',
21+
ensure => 'installed',
2222
}
2323

2424
class { 'firewalld': }

0 commit comments

Comments
 (0)