r10k 2.6.7 → 2.6.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/release.yml +37 -0
- data/CHANGELOG.mkd +22 -4
- data/CODEOWNERS +1 -0
- data/integration/Rakefile +2 -2
- data/lib/r10k/version.rb +4 -1
- data/r10k.gemspec +6 -2
- data/test +1 -1
- metadata +43 -18
- data/MAINTAINERS +0 -18
- data/integration/scripts/README.mkd +0 -86
- data/integration/scripts/setup_r10k_env_centos5.sh +0 -23
- data/integration/scripts/setup_r10k_env_centos6.sh +0 -23
- data/integration/scripts/setup_r10k_env_rhel7.sh +0 -23
- data/integration/scripts/setup_r10k_env_sles11.sh +0 -23
- data/integration/scripts/setup_r10k_env_sles12.sh +0 -23
- data/integration/scripts/setup_r10k_env_ubuntu1004.sh +0 -23
- data/integration/scripts/setup_r10k_env_ubuntu1204.sh +0 -23
- data/integration/scripts/setup_r10k_env_ubuntu1404.sh +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ee2321098498b77bffaa8f677200b8018aafe342ed5662968dfdb02a02abcf23
|
4
|
+
data.tar.gz: 36335f878adfa601735d9955a9ad02ec599ac9c88962bad34dd8b15f6ab1afa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ab62dc0d0b640502071052d5c0d3528ce61ef85f803a5abe21c1f31708847eb8c26c70e7e31873541ad0740240468b4cd860c9335bf6bf66f31188f0f6d9752
|
7
|
+
data.tar.gz: 5e5bc2f3179172cb5d48a4c9f6f52594fb32131bc5b0ec63e176dde3c200e8948ce88622530ddbbefed9c6e0625dc310f9d77d2a3f7da96a7ed43394e5d672fb
|
@@ -0,0 +1,37 @@
|
|
1
|
+
name: Tag and release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
- 2.6.x
|
8
|
+
paths:
|
9
|
+
- 'lib/r10k/version.rb'
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
release:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@v2
|
16
|
+
with:
|
17
|
+
fetch-depth: '0'
|
18
|
+
- name: Bump version and push tag
|
19
|
+
uses: anothrNick/github-tag-action@1.17.2
|
20
|
+
env:
|
21
|
+
GITHUB_TOKEN: ${{ secrets.PUPPET_RELEASE_GH_TOKEN }}
|
22
|
+
DEFAULT_BUMP: patch
|
23
|
+
WITH_V: false
|
24
|
+
# Uncomment this if the tag and version file become out-of-sync and
|
25
|
+
# you need to tag at a specific version.
|
26
|
+
# CUSTOM_TAG:
|
27
|
+
- name: Build gem
|
28
|
+
uses: scarhand/actions-ruby@master
|
29
|
+
with:
|
30
|
+
args: build *.gemspec
|
31
|
+
- name: Publish gem
|
32
|
+
uses: scarhand/actions-ruby@master
|
33
|
+
env:
|
34
|
+
RUBYGEMS_AUTH_TOKEN: ${{ secrets.RUBYGEMS_AUTH_TOKEN }}
|
35
|
+
with:
|
36
|
+
args: push *.gem
|
37
|
+
|
data/CHANGELOG.mkd
CHANGED
@@ -1,10 +1,26 @@
|
|
1
1
|
CHANGELOG
|
2
2
|
=========
|
3
3
|
|
4
|
+
2.6.8
|
5
|
+
----
|
6
|
+
|
7
|
+
### Changes
|
8
|
+
|
9
|
+
(RK-357) Restrict gettext and fast_gettext versions for compatibility with Ruby 2.4.
|
10
|
+
(RK-358) Update puppet_forge to ~> 2.3.0.
|
11
|
+
|
12
|
+
2.6.7
|
13
|
+
----
|
14
|
+
|
15
|
+
### Changes
|
16
|
+
|
17
|
+
(CDPE-1813) Add module deploy info to .r10k-deploy.json.
|
18
|
+
(RK-351) Update minitar to ~> 0.9.0.
|
19
|
+
|
4
20
|
2.6.6
|
5
21
|
----
|
6
22
|
|
7
|
-
|
23
|
+
### Changes
|
8
24
|
|
9
25
|
- Flag for overriding default branch configuration in Puppetfile
|
10
26
|
- Plumbing for internationalization
|
@@ -13,25 +29,27 @@ CHANGELOG
|
|
13
29
|
2.6.5
|
14
30
|
----
|
15
31
|
|
16
|
-
|
32
|
+
### Bug Fix
|
17
33
|
|
18
34
|
(RK-324) Fix Ruby pipe bug affecting Ubuntu
|
19
35
|
|
20
36
|
2.6.4
|
21
37
|
----
|
22
38
|
|
23
|
-
|
39
|
+
### Changes
|
24
40
|
|
25
41
|
Numerous test fixes.
|
26
42
|
|
27
43
|
2.6.3
|
28
44
|
----
|
29
|
-
|
45
|
+
|
46
|
+
### Changes
|
30
47
|
|
31
48
|
Update specs with new error string.
|
32
49
|
|
33
50
|
2.6.2
|
34
51
|
-----
|
52
|
+
|
35
53
|
### Changes
|
36
54
|
|
37
55
|
(RK-311) Yard dependency updated for security fix.
|
data/CODEOWNERS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
* @puppetlabs/puppetserver-maintainers
|
data/integration/Rakefile
CHANGED
@@ -44,8 +44,8 @@ EOS
|
|
44
44
|
|
45
45
|
t.add_env do |env|
|
46
46
|
env.name = 'pe_dist_dir'
|
47
|
-
env.message = 'The location to download PE from example "
|
48
|
-
ENV['pe_dist_dir'] ||= "
|
47
|
+
env.message = 'The location to download PE from, for example "https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/20XX.X/ci-ready"'
|
48
|
+
ENV['pe_dist_dir'] ||= "https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/#{ENV['PE_FAMILY']}/ci-ready"
|
49
49
|
end
|
50
50
|
|
51
51
|
t.add_env do |env|
|
data/lib/r10k/version.rb
CHANGED
@@ -1,3 +1,6 @@
|
|
1
1
|
module R10K
|
2
|
-
|
2
|
+
# When updating to a new major (X) or minor (Y) version, include `#major` or
|
3
|
+
# `#minor` (respectively) in your commit message to trigger the appropriate
|
4
|
+
# release. Otherwise, a new patch (Z) version will be released.
|
5
|
+
VERSION = '2.6.8'
|
3
6
|
end
|
data/r10k.gemspec
CHANGED
@@ -28,9 +28,13 @@ Gem::Specification.new do |s|
|
|
28
28
|
s.add_dependency 'log4r', '1.1.10'
|
29
29
|
s.add_dependency 'multi_json', '~> 1.10'
|
30
30
|
|
31
|
-
s.add_dependency 'puppet_forge', '~> 2.
|
31
|
+
s.add_dependency 'puppet_forge', '~> 2.3.0'
|
32
32
|
|
33
|
-
s.add_dependency 'gettext-setup', '~>
|
33
|
+
s.add_dependency 'gettext-setup', '~>0.24'
|
34
|
+
# These two pins narrow what is allowed by gettext-setup,
|
35
|
+
# to preserver compatability with Ruby 2.4
|
36
|
+
s.add_dependency 'fast_gettext', '~> 1.1.0'
|
37
|
+
s.add_dependency 'gettext', ['>= 3.0.2', '< 3.3.0']
|
34
38
|
|
35
39
|
s.add_development_dependency 'rspec', '~> 3.1'
|
36
40
|
|
data/test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
integration
|
1
|
+
./integration
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: r10k
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrien Thebo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored
|
@@ -72,28 +72,62 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 2.
|
75
|
+
version: 2.3.0
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 2.
|
82
|
+
version: 2.3.0
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: gettext-setup
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '0.
|
89
|
+
version: '0.24'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '0.
|
96
|
+
version: '0.24'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: fast_gettext
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.1.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.1.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: gettext
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 3.0.2
|
118
|
+
- - "<"
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: 3.3.0
|
121
|
+
type: :runtime
|
122
|
+
prerelease: false
|
123
|
+
version_requirements: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: 3.0.2
|
128
|
+
- - "<"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: 3.3.0
|
97
131
|
- !ruby/object:Gem::Dependency
|
98
132
|
name: rspec
|
99
133
|
requirement: !ruby/object:Gem::Requirement
|
@@ -160,13 +194,14 @@ executables:
|
|
160
194
|
extensions: []
|
161
195
|
extra_rdoc_files: []
|
162
196
|
files:
|
197
|
+
- ".github/workflows/release.yml"
|
163
198
|
- ".gitignore"
|
164
199
|
- ".travis.yml"
|
165
200
|
- CHANGELOG.mkd
|
201
|
+
- CODEOWNERS
|
166
202
|
- CONTRIBUTING.mkd
|
167
203
|
- Gemfile
|
168
204
|
- LICENSE
|
169
|
-
- MAINTAINERS
|
170
205
|
- README.mkd
|
171
206
|
- Rakefile
|
172
207
|
- bin/r10k
|
@@ -207,15 +242,6 @@ files:
|
|
207
242
|
- integration/pre-suite/10_git_config.rb
|
208
243
|
- integration/pre-suite/20_pe_r10k.rb
|
209
244
|
- integration/pre-suite/README.mkd
|
210
|
-
- integration/scripts/README.mkd
|
211
|
-
- integration/scripts/setup_r10k_env_centos5.sh
|
212
|
-
- integration/scripts/setup_r10k_env_centos6.sh
|
213
|
-
- integration/scripts/setup_r10k_env_rhel7.sh
|
214
|
-
- integration/scripts/setup_r10k_env_sles11.sh
|
215
|
-
- integration/scripts/setup_r10k_env_sles12.sh
|
216
|
-
- integration/scripts/setup_r10k_env_ubuntu1004.sh
|
217
|
-
- integration/scripts/setup_r10k_env_ubuntu1204.sh
|
218
|
-
- integration/scripts/setup_r10k_env_ubuntu1404.sh
|
219
245
|
- integration/tests/Puppetfile/HTTP_PROXY_affects_forge_source.rb
|
220
246
|
- integration/tests/Puppetfile/HTTP_PROXY_affects_git_source.rb
|
221
247
|
- integration/tests/README.mkd
|
@@ -511,8 +537,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
511
537
|
- !ruby/object:Gem::Version
|
512
538
|
version: '0'
|
513
539
|
requirements: []
|
514
|
-
|
515
|
-
rubygems_version: 2.5.1
|
540
|
+
rubygems_version: 3.0.3
|
516
541
|
signing_key:
|
517
542
|
specification_version: 4
|
518
543
|
summary: Puppet environment and module deployment
|
data/MAINTAINERS
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"file_format": "This MAINTAINERS file format is described at https://github.com/puppetlabs/maintainers",
|
4
|
-
"issues": "https://tickets.puppet.com/browse/RK",
|
5
|
-
"internal_list": "https://groups.google.com/a/puppet.com/forum/?hl=en#!forum/discuss-code-manager-maintainers",
|
6
|
-
"people": [
|
7
|
-
{
|
8
|
-
"github": "andersonmills",
|
9
|
-
"email": "anderson@puppet.com",
|
10
|
-
"name": "Anderson Mills"
|
11
|
-
},
|
12
|
-
{
|
13
|
-
"github": "scotje",
|
14
|
-
"email": "jesse@puppet.com",
|
15
|
-
"name": "Jesse Scott"
|
16
|
-
}
|
17
|
-
]
|
18
|
-
}
|
@@ -1,86 +0,0 @@
|
|
1
|
-
Scripts
|
2
|
-
=======
|
3
|
-
|
4
|
-
This folder contains helper scripts for setting up manual testing environments
|
5
|
-
using [Beaker](https://github.com/puppetlabs/beaker) configuration files. The
|
6
|
-
environments created by these scripts have "r10k" fully configured along with
|
7
|
-
a Git repository with a valid "production" environment.
|
8
|
-
|
9
|
-
These scripts are specific to the Puppet Labs environment and will not work in
|
10
|
-
other environments without alteration!
|
11
|
-
|
12
|
-
## Prerequisites
|
13
|
-
|
14
|
-
To utilize this test scripts you will need to have Ruby 1.9.3 or greater
|
15
|
-
installed on your system along with Bundler. Also, the scripts utilize the
|
16
|
-
"vmpooler" for virtual machine creation. Access to the "vmpooler" machines
|
17
|
-
require having valid SSH private keys located on your local computer. Speak
|
18
|
-
with a QA team member for more information on where to find the necessary
|
19
|
-
SSH keys.
|
20
|
-
|
21
|
-
## Usage
|
22
|
-
|
23
|
-
The scripts are written in Bash and should run on any Linux or Mac system as
|
24
|
-
long as the prerequisites mentioned above are satisfied.
|
25
|
-
|
26
|
-
### Cloning
|
27
|
-
|
28
|
-
First you will need to clone the "[r10k](https://github.com/puppetlabs/r10k)" repository on your local machine:
|
29
|
-
|
30
|
-
```bash
|
31
|
-
git clone git@github.com:puppetlabs/r10k.git
|
32
|
-
```
|
33
|
-
|
34
|
-
### Executing Script
|
35
|
-
|
36
|
-
Navigate to the integration tests "scripts" folder of the "r10k" repository
|
37
|
-
clone:
|
38
|
-
|
39
|
-
```bash
|
40
|
-
cd r10k/integration/scripts
|
41
|
-
```
|
42
|
-
|
43
|
-
There are separate scripts for each supported platform. Select a desired
|
44
|
-
platform and execute the script:
|
45
|
-
|
46
|
-
```bash
|
47
|
-
bash setup_r10k_env_centos6.sh
|
48
|
-
```
|
49
|
-
|
50
|
-
## Connecting to Machines
|
51
|
-
|
52
|
-
The setup process takes about 10 minutes to complete. Once finished Beaker
|
53
|
-
will report that all tests have been run successfully. The output log will
|
54
|
-
list the machines created. The Puppet master will have a name ending with
|
55
|
-
"-master" which you can scrape from the Beaker console output. Example:
|
56
|
-
|
57
|
-
```
|
58
|
-
a9lrs93vnujsrrg.delivery.puppetlabs.net (centos-6-x86_64-master) executed in 1.26 seconds
|
59
|
-
```
|
60
|
-
|
61
|
-
The FQDN of the Puppet master ("a9lrs93vnujsrrg.delivery.puppetlabs.net" in the
|
62
|
-
above example) will be printed to the left of the machine tag. The machine tag
|
63
|
-
is a combination of the platform and role of the virtual machine.
|
64
|
-
|
65
|
-
Now that you have the FQDN you can connect to the machine using SSH:
|
66
|
-
|
67
|
-
```bash
|
68
|
-
ssh -i private_key root@a9lrs93vnujsrrg.delivery.puppetlabs.net
|
69
|
-
```
|
70
|
-
|
71
|
-
*Note:* The correct SSH private key needs to be installed on your local machine
|
72
|
-
first. Speak with a QA representative to get the correct key for "vmpooler"
|
73
|
-
machines.
|
74
|
-
|
75
|
-
## Configuration Details
|
76
|
-
|
77
|
-
Now that you have successfully connected to the Puppet master you can begin
|
78
|
-
manual testing. The script has configured Git on the Puppet master to provide
|
79
|
-
a working "production" environment for "r10k" testing. The Git repository
|
80
|
-
serving the Puppet environments is located at "/git_repos/environments.git".
|
81
|
-
There is a Git clone of the remote repository located at "/root/environments".
|
82
|
-
|
83
|
-
When performing manual "r10k" testing you should utilize the Git clone
|
84
|
-
repository located at "/root/environments". The "r10k" configuration file
|
85
|
-
"/etc/puppetlabs/r10k/r10k.yaml" is already configured to use the remote Git
|
86
|
-
repository for deployments.
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/centos-5-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/centos-6-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/redhat-7-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/sles-11-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/sles-12-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/ubuntu-1004-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/ubuntu-1204-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
SCRIPT_PATH=$(pwd)
|
3
|
-
BASENAME_CMD="basename ${SCRIPT_PATH}"
|
4
|
-
SCRIPT_BASE_PATH=`eval ${BASENAME_CMD}`
|
5
|
-
|
6
|
-
if [ $SCRIPT_BASE_PATH = "scripts" ]; then
|
7
|
-
cd ../
|
8
|
-
fi
|
9
|
-
|
10
|
-
export pe_dist_dir=http://neptune.puppetlabs.lan/4.0/ci-ready/
|
11
|
-
export GIT_PROVIDER=shellgit
|
12
|
-
|
13
|
-
bundle install --path .bundle/gems
|
14
|
-
|
15
|
-
bundle exec beaker \
|
16
|
-
--preserve-hosts always \
|
17
|
-
--config configs/pe/ubuntu-1404-64mda \
|
18
|
-
--debug \
|
19
|
-
--keyfile ~/.ssh/id_rsa-acceptance \
|
20
|
-
--pre-suite pre-suite \
|
21
|
-
--load-path lib
|
22
|
-
|
23
|
-
rm -rf .bundle
|