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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b71ce84978f4c0c04f3bf960f22cb555ebd102da45854477215e8fec8c2dc030
4
- data.tar.gz: f36dd7eb60a4e3ffb01990ca40cb6d6049503eaa47e3af751abedc4f0036aed4
3
+ metadata.gz: 25785faaa8f4cf4b1e458db922a180ffcbfc3e90bf1a29be3cc8e7d6ba009a56
4
+ data.tar.gz: 399e8268e43f34498c1d14d14d0268d3e621f4411d01b2fa0203494af39aa248
5
5
  SHA512:
6
- metadata.gz: e6cc7b7ba60df6febe0c8f96cf86a7349945483e049ad37e3ddbd27afd36f6ef9c621514d9321f256476a42220396da864a93459b98890ceb010805f29a02025
7
- data.tar.gz: 50ec8b60ecc6595597a1ea6c4d7cb74eaead95719bd1308a5954e9a40a0bd2f7750a4f81289fefac27ec3e983ec957973fa7437ba73e76538e80ae1f322cf8ca
6
+ metadata.gz: 43ae3f45fadb4ca31cbdf783c19d7c49ae7241a27118a3387ae8ef6eefc911b32433a1632b0afd75d27638b6b0f8be59c30c40e243f944a7a509333bf170cffd
7
+ data.tar.gz: 74e5bfe68ee3c9a6335b588751afed8e1ebfb5b32d241e0601ee8aef573048b68e0c93412a7b6e8a2a31f8adca9306d79b1e6784f0a578e2b9e0f4038aebb64f
data/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/jmtx1020/kitchen-yansible-pusher/tree/HEAD)
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...HEAD)
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
@@ -3,7 +3,7 @@
3
3
  module Kitchen
4
4
  module Yansible
5
5
  module Pusher
6
- VERSION = "0.3.0"
6
+ VERSION = "0.3.1"
7
7
  end
8
8
  end
9
9
  end
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.0
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.11
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.