-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from traylenator/netbase
Install netbase for /etc/services on Ubuntu 20.04
- Loading branch information
Showing
13 changed files
with
67 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
name: "Pull Request Labeler" | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
pull_request_target: {} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
# Managed by modulesync - DO NOT EDIT | ||
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/ | ||
|
||
name: 'Prepare Release' | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Module version to be released. Must be a valid semver string without leading v. (1.2.3)' | ||
required: false | ||
|
||
jobs: | ||
release_prep: | ||
uses: 'voxpupuli/gha-puppet/.github/workflows/prepare_release.yml@v3' | ||
with: | ||
version: ${{ github.event.inputs.version }} | ||
allowed_owner: 'voxpupuli' | ||
secrets: | ||
# Configure secrets here: | ||
# https://docs.github.com/en/actions/security-guides/encrypted-secrets | ||
github_pat: '${{ secrets.PCCI_PAT_RELEASE_PREP }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.configure do |c| | ||
c.before do | ||
# select the systemd service provider even when on docker | ||
# https://tickets.puppetlabs.com/browse/PUP-11167 | ||
allow(Puppet::FileSystem).to receive(:exist?).and_call_original | ||
allow(Puppet::FileSystem).to receive(:exist?).with('/proc/1/comm').and_return(true) | ||
allow(Puppet::FileSystem).to receive(:read).and_call_original | ||
allow(Puppet::FileSystem).to receive(:read).with('/proc/1/comm').and_return(['systemd']) | ||
end | ||
end |