Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 14019f0

Browse files
authored
Merge pull request #212 from signalfx/puppet-chef-final-stage
Using the right name for main package repo
2 parents 7c275f8 + 6893675 commit 14019f0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

deployments/chef/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ of the form `<agent version>-<package revision>` (e.g. package version
2525
the packaging scripts (e.g. init scripts) but contain the same agent bundle.
2626

2727
`node['signalfx_agent']['package_stage']`: The package repository to use. Can
28-
be `main` (default, for final releases), `beta` (for beta releases), or `test`
28+
be `final` (default, for main releases), `beta` (for beta releases), or `test`
2929
(for unsigned test releases).
3030

3131
`node['signalfx_agent']['conf']`: Agent configuration object. Everything

deployments/chef/attributes/default.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
default['signalfx_agent']['repo_base_url'] = "https://dl.signalfx.com"
3-
default['signalfx_agent']['package_stage'] = 'main'
3+
default['signalfx_agent']['package_stage'] = 'final'
44

55
default['signalfx_agent']['debian_repo_url'] = "#{node['signalfx_agent']['repo_base_url']}/debs/signalfx-agent"
66
default['signalfx_agent']['debian_gpg_key_url'] = "#{node['signalfx_agent']['repo_base_url']}/debian.gpg"

deployments/puppet/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ class accepts the following parameters:
3434
`signalfx_agent::config`, which will make it automatically filled in as a
3535
parameter.
3636

37-
- `$package_stage`: The package repo stage to use: `main`, `beta`, or `test`
38-
(**default:** 'main')
37+
- `$package_stage`: The package repo stage to use: `final`, `beta`, or `test`
38+
(**default:** 'final')
3939

4040
- `$config_file_path`: The path of the config file that will be rendered by the
4141
module (**default:** '/etc/signalfx/agent.yaml')

deployments/puppet/manifests/init.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Main class that installs and configures the agent
22
class signalfx_agent (
33
$config,
4-
$package_stage = 'main',
4+
$package_stage = 'final',
55
$repo_base = 'dl.signalfx.com',
66
$config_file_path = '/etc/signalfx/agent.yaml',
77
$version = 'latest') {

0 commit comments

Comments
 (0)