kitchen-yansible-pusher 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -2
- data/lib/kitchen/provisioner/yansible_pusher.rb +2 -0
- data/lib/kitchen/yansible/pusher/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25785faaa8f4cf4b1e458db922a180ffcbfc3e90bf1a29be3cc8e7d6ba009a56
|
4
|
+
data.tar.gz: 399e8268e43f34498c1d14d14d0268d3e621f4411d01b2fa0203494af39aa248
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43ae3f45fadb4ca31cbdf783c19d7c49ae7241a27118a3387ae8ef6eefc911b32433a1632b0afd75d27638b6b0f8be59c30c40e243f944a7a509333bf170cffd
|
7
|
+
data.tar.gz: 74e5bfe68ee3c9a6335b588751afed8e1ebfb5b32d241e0601ee8aef573048b68e0c93412a7b6e8a2a31f8adca9306d79b1e6784f0a578e2b9e0f4038aebb64f
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [v0.3.0](https://github.com/jmtx1020/kitchen-yansible-pusher/tree/v0.3.0) (2024-09-04)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/jmtx1020/kitchen-yansible-pusher/compare/v0.2.0...
|
5
|
+
[Full Changelog](https://github.com/jmtx1020/kitchen-yansible-pusher/compare/v0.2.0...v0.3.0)
|
6
6
|
|
7
7
|
**Merged pull requests:**
|
8
8
|
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'kitchen/provisioner/base'
|
4
|
+
require 'kitchen/errors'
|
4
5
|
require_relative '../yansible/pusher/version'
|
5
6
|
require 'yaml'
|
6
7
|
|
@@ -72,6 +73,7 @@ module Kitchen
|
|
72
73
|
command = build_ansible_command
|
73
74
|
info("Running Ansible Command: #{command}")
|
74
75
|
system(command)
|
76
|
+
raise Kitchen::ActionFailed, 'Ansible playbook execution failed' unless $?.success?
|
75
77
|
end
|
76
78
|
|
77
79
|
def create_inventory
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-yansible-pusher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jose M. Tobar
|
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
49
|
- !ruby/object:Gem::Version
|
50
50
|
version: '0'
|
51
51
|
requirements: []
|
52
|
-
rubygems_version: 3.5.
|
52
|
+
rubygems_version: 3.5.16
|
53
53
|
signing_key:
|
54
54
|
specification_version: 4
|
55
55
|
summary: A modern & minimalistic Ansible provisioner for Test Kitchen.
|