Skip to content

Commit e298634

Browse files
Merge pull request #1147 from david22swan/IAC-1012/main/removal_of_inappropriate_terminology
(IAC-1012) - Removal of Inappropriate Terminology
2 parents 434dd74 + 625dabd commit e298634

File tree

14 files changed

+30
-30
lines changed

14 files changed

+30
-30
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
runs-on: ubuntu-20.04
221221
steps:
222222
- name: Slack Workflow Notification
223-
uses: Gamesight/slack-workflow-status@master
223+
uses: Gamesight/slack-workflow-status@main
224224
with:
225225
# Required Input
226226
repo_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v1
2323
- name: Litmus Parallel
24-
uses: puppetlabs/action-litmus_parallel@master
24+
uses: puppetlabs/action-litmus_parallel@main
2525
with:
2626
platform: ${{ matrix.platform }}
2727
agent_family: ${{ matrix.agent_family }}
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v1
4242
- name: Litmus Parallel
43-
uses: puppetlabs/action-litmus_parallel@master
43+
uses: puppetlabs/action-litmus_parallel@main
4444
with:
4545
platform: ${{ matrix.platform }}
4646
agent_family: ${{ matrix.agent_family }}
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v1
6161
- name: Spec Tests
62-
uses: puppetlabs/action-litmus_spec@master
62+
uses: puppetlabs/action-litmus_spec@main
6363
with:
6464
puppet_gem_version: ${{ matrix.puppet_gem_version }}
6565
check: ${{ matrix.check }}

.github/workflows/weekly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v1
2222
- name: Litmus Parallel
23-
uses: puppetlabs/action-litmus_parallel@master
23+
uses: puppetlabs/action-litmus_parallel@main
2424
with:
2525
platform: ${{ matrix.platform }}
2626
agent_family: ${{ matrix.agent_family }}
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v1
4141
- name: Litmus Parallel
42-
uses: puppetlabs/action-litmus_parallel@master
42+
uses: puppetlabs/action-litmus_parallel@main
4343
with:
4444
platform: ${{ matrix.platform }}
4545
agent_family: ${{ matrix.agent_family }}
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@v1
6060
- name: Spec Tests
61-
uses: puppetlabs/action-litmus_spec@master
61+
uses: puppetlabs/action-litmus_spec@main
6262
with:
6363
puppet_gem_version: ${{ matrix.puppet_gem_version }}
6464
check: ${{ matrix.check }}

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ This release sees a massive update to all unit tests to test UTF8 characters. Th
432432
- Permit double slash in absolute/Unix path types.
433433

434434
#### Bugfixes
435-
- Fix unsupported data type error with rspec-puppet master.
435+
- Fix unsupported data type error with rspec-puppet server.
436436
- Now allows test module metadata.json to be read by Puppet.
437437
- Fix acceptance test failure "Hiera is not a class".
438438
- Removal of unsupported platforms and future parser setting in acceptance tests.
@@ -1076,7 +1076,7 @@ This is a supported release
10761076

10771077
##### 2012-07-19 - Jeff McCune <jeff@puppetlabs.com> - 2.4.0
10781078

1079-
* (Maint) use PuppetlabsSpec::PuppetInternals.scope (master) (deafe88)
1079+
* (Maint) use PuppetlabsSpec::PuppetInternals.scope (main) (deafe88)
10801080

10811081
##### 2012-07-10 - Hailee Kenney <hailee@puppetlabs.com> - 2.4.0
10821082

@@ -1102,7 +1102,7 @@ This is a supported release
11021102
* (#13595) initialize\_everything\_for\_tests couples modules Puppet ver (3222f35)
11031103
* (#13439) Fix MRI 1.9 issue with spec\_helper (15c5fd1)
11041104
* (#13439) Fix test failures with Puppet 2.6.x (665610b)
1105-
* (#13439) refactor spec helper for compatibility with both puppet 2.7 and master (82194ca)
1105+
* (#13439) refactor spec helper for compatibility with both puppet 2.7 and server (82194ca)
11061106
* (#13494) Specify the behavior of zero padded strings (61891bb)
11071107

11081108
##### 2012-03-29 Puppet Labs <support@puppetlabs.com> - 2.1.3

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ process as easy as possible.
108108

109109
To submit your changes via a GitHub pull request, we _highly_
110110
recommend that you have them on a topic branch, instead of
111-
directly on "master".
111+
directly on "main".
112112
It makes things much easier to keep track of, especially if
113113
you decide to work on another thing before your first change
114114
is merged in.

HISTORY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ This release sees a massive update to all unit tests to test UTF8 characters. Th
304304
- Permit double slash in absolute/Unix path types.
305305

306306
#### Bugfixes
307-
- Fix unsupported data type error with rspec-puppet master.
307+
- Fix unsupported data type error with rspec-puppet server.
308308
- Now allows test module metadata.json to be read by Puppet.
309309
- Fix acceptance test failure "Hiera is not a class".
310310
- Removal of unsupported platforms and future parser setting in acceptance tests.
@@ -948,7 +948,7 @@ This is a supported release
948948

949949
##### 2012-07-19 - Jeff McCune <jeff@puppetlabs.com> - 2.4.0
950950

951-
* (Maint) use PuppetlabsSpec::PuppetInternals.scope (master) (deafe88)
951+
* (Maint) use PuppetlabsSpec::PuppetInternals.scope (main) (deafe88)
952952

953953
##### 2012-07-10 - Hailee Kenney <hailee@puppetlabs.com> - 2.4.0
954954

@@ -974,7 +974,7 @@ This is a supported release
974974
* (#13595) initialize\_everything\_for\_tests couples modules Puppet ver (3222f35)
975975
* (#13439) Fix MRI 1.9 issue with spec\_helper (15c5fd1)
976976
* (#13439) Fix test failures with Puppet 2.6.x (665610b)
977-
* (#13439) refactor spec helper for compatibility with both puppet 2.7 and master (82194ca)
977+
* (#13439) refactor spec helper for compatibility with both puppet 2.7 and server (82194ca)
978978
* (#13494) Specify the behavior of zero padded strings (61891bb)
979979

980980
##### 2012-03-29 Puppet Labs <support@puppetlabs.com> - 2.1.3

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ node default {
6464

6565
## Reference
6666

67-
For information on the classes and types, see the [REFERENCE.md](https://github.com/puppetlabs/puppetlabs-stdlib/blob/master/REFERENCE.md).
67+
For information on the classes and types, see the [REFERENCE.md](https://github.com/puppetlabs/puppetlabs-stdlib/blob/main/REFERENCE.md).
6868

6969
<a id="data-types"></a>
7070
### Data types
@@ -544,7 +544,7 @@ Returns the value of the Puppet environment path settings for the node running P
544544

545545
#### `puppet_server`
546546

547-
Returns the Puppet agent's `server` value, which is the hostname of the Puppet master with which the agent should communicate.
547+
Returns the Puppet agent's `server` value, which is the hostname of the Puppet server with which the agent should communicate.
548548
549549
#### `root_home`
550550
@@ -560,11 +560,11 @@ Returns the default provider Puppet uses to manage services on this system
560560
561561
As of Puppet Enterprise 3.7, the stdlib module is no longer included in PE. PE users should install the most recent release of stdlib for compatibility with Puppet modules.
562562
563-
For an extensive list of supported operating systems, see [metadata.json](https://github.com/puppetlabs/puppetlabs-stdlib/blob/master/metadata.json)
563+
For an extensive list of supported operating systems, see [metadata.json](https://github.com/puppetlabs/puppetlabs-stdlib/blob/main/metadata.json)
564564
565565
## Development
566566
567-
Puppet modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad hardware, software, and deployment configurations that Puppet is intended to serve. We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things. For more information, see our [module contribution guide](https://github.com/puppetlabs/puppetlabs-stdlib/blob/master/CONTRIBUTING.md).
567+
Puppet modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad hardware, software, and deployment configurations that Puppet is intended to serve. We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things. For more information, see our [module contribution guide](https://github.com/puppetlabs/puppetlabs-stdlib/blob/main/CONTRIBUTING.md).
568568
569569
To report or research a bug with any part of this module, please go to
570570
[http://tickets.puppetlabs.com/browse/MODULES](http://tickets.puppetlabs.com/browse/MODULES).

REFERENCE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3984,7 +3984,7 @@ hash types are:
39843984

39853985
The third argument to this function is the salt to use.
39863986

3987-
> *Note:*: this uses the Puppet Master's implementation of crypt(3). If your
3987+
> *Note:*: this uses the Puppet Server's implementation of crypt(3). If your
39883988
environment contains several different operating systems, ensure that they
39893989
are compatible before using this function.
39903990

@@ -4005,7 +4005,7 @@ hash types are:
40054005

40064006
The third argument to this function is the salt to use.
40074007

4008-
> *Note:*: this uses the Puppet Master's implementation of crypt(3). If your
4008+
> *Note:*: this uses the Puppet Server's implementation of crypt(3). If your
40094009
environment contains several different operating systems, ensure that they
40104010
are compatible before using this function.
40114011

RELEASE_PROCESS.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Work in a topic branch
44
* Submit a github pull request
55
* Address any comments / feeback
6-
* Merge into master using --no-ff
6+
* Merge into main using --no-ff
77

88
# Releasing this module #
99

1010
* This module adheres to http://semver.org/
11-
* Look for API breaking changes using git diff vX.Y.Z..master
11+
* Look for API breaking changes using git diff vX.Y.Z..
1212
* If no API breaking changes, the minor version may be bumped.
1313
* If there are API breaking changes, the major version must be bumped.
1414
* If there are only small minor changes, the patch version may be bumped.

lib/facter/puppet_settings.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# These facter facts return the value of the Puppet vardir and environment path
22
# settings for the node running puppet or puppet agent. The intent is to
33
# enable Puppet modules to automatically have insight into a place where they
4-
# can place variable data, or for modules running on the puppet master to know
4+
# can place variable data, or for modules running on the puppet server to know
55
# where environments are stored.
66
#
77
# The values should be directly usable in a File resource path attribute.

0 commit comments

Comments
 (0)