Install macOS agents
Sections
On macOS, agents have core Puppet functionality and platform-specific capabilities like package installation, LaunchD service management, System Profiler facts inventory, and directory services integration. You can install agents on macOS nodes with the install script, from the Puppet Enterprise (PE) console, from Finder, and more.
Install macOS agents from Finder
You can use Finder to install agents on macOS nodes. Client URL (curl) and World Wide Web Get (Wget) commands can be used to download PE repo tarballs from PE’s private repository.
Authentication credentials
Because Puppet Enterprise agent packages are stored in a private repository, you must authenticate to access and download the packages.
license-id
as your username and
use your PE License ID as the password. You can find your PE License ID in your PE
license file or in the PE console by selecting License in the
navigation bar. Authentication procedures
You can use either of the following procedures to authenticate:
- Create and configure a
.netrc
file - Export credentials to environment variables
Create and configure a .netrc file
A .netrc
file is a configuration file used by many
command-line tools and programs, including curl, FTP, and Git. The primary purpose of the
file is to store login credentials.
.netrc
file: - Create a file named
.netrc
by running the following commands:touch ~/.netrc chmod 600 ~/.netrc
Copied! -
Edit the file to add your credentials, where
license-id
is a string literal and <PE_License_ID> is your PE License ID:machine artifacts-puppetcore.puppet.com login license-id password <PE_License_ID>
Copied! - Run a command with the
--netrc
option so that the credentials stored in the.netrc
file are used for authentication, as shown in the following example:
curl --netrc 'https://artifacts-puppetcore.puppet.com/v1/download?version=8.11.0&type=perepo&os_name=el&os_version=9&os_arch=x86_64' -J -O
Copied!
Export credentials to environment variables
You can directly curl the endpoints with credentials by completing the following steps:
- Export the credentials, where
license-id
is a string literal and <PE_License_ID> is your PE License ID:export USERNAME=license-id export PASSWORD=<PE_License_ID>
Copied! - Call the credentials from the URL, as shown in the following example:
curl -u $USERNAME:$PASSWORD 'https://artifacts-puppetcore.puppet.com/v1/download?version=8.11.0&type=perepo&os_name=el&os_version=9&os_arch=x86_64' -J -O
Copied!
Request parameters
The following request parameters are accepted by the artifact download endpoint.
Name | Type | Default | Example | Description |
---|---|---|---|---|
version | String | None | 8.11.0 | The package version. |
os_name | String | None | amazon | The name of the operating system. |
os_version | String | None | 2023 | The operating system version. |
os_arch | String | None | aarch64 | The operating system architecture. |
Operating system names, versions, and architectures
The following table lists currently valid values for the os_name
, os_version
, and os_arch
parameters.
Name | Full name | Version | Architecture |
---|---|---|---|
aix | AIX | 7.2 | architecture ppc |
amazon | Amazon Linux | 2, 2023, and so on | x86_64, aarch64 |
debian | Debian | 10, 11, and so on | amd64, arm64 |
el | Red Hat Enterprise Linux | 7, 8, and so on | x86_64, aarch64, ppc64le |
fedora | Fedora Linux | 40 and so on | x86_64 |
osx | macOS | 14 and so on | x86_64, arm64 |
redhatfips | Redhat (FIPS) | 7, 8, 9 | x86_64 |
sles | SUSE Linux Enterprise Server | 12, 15 | x86_64 |
solaris
|
Solaris | 11 | 11: x86_64, SPARC |
ubuntu | Ubuntu | 22.04 and so on | amd64, arm64 |
windows | Microsoft Windows | Ignored | x86, x64 |
windowsfips | Windows (FIPS) | Ignored | x64 |
Example
-
<username> is a string literal,
license-id
-
<password> is the PE License ID
curl -J -O -u <username>:<password> "https://artifacts-puppetcore.puppet.com/v1/download?version=8.11.0&os_name=osx&os_version=14&os_arch=x86_64"
Copied!
Content disposition
Content disposition is enabled for these packages and can be used while downloading
packages to store them with their default name. Use –J
–O
only with curl. For wget, use the following structure:
wget --content-disposition <URL>
Copied!
- Download the appropriate agent tarball.
- Open the agent package
.dmg
and click the installer.pkg
. - Follow installer dialog prompts. You must provide the primary server's hostname
and the agent's certname. Note: For macOS agents, the
certname
is derived from the machine's name. For best compatibility, make sure the node's name doesn't include capital letters (for example,My-Example-Mac
must bemy-example-mac
). If you don’t want to change the computer’s name, enter the agentcertname
in all lowercase letters when prompted by the installer. - Run
puppet agent -t
to add the node to the node inventory and generate the CSR. - Accept the CSR as explained in Managing certificate signing requests.
Install macOS agents from the command line
You can use the command line to install agents on macOS nodes.