cloud-mu 3.6.7 → 3.6.8

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: 003c0d1b66f1b8e0bf05fa41a1b8503e7d7690b115505e4537fcb85d096018e7
4
- data.tar.gz: 93680350b3d1425ce72a416b31503be4d4941cb6ee9d9ac46a4ae089827ae93a
3
+ metadata.gz: 9d04631e7027be568faf676d9aaca5a452d14367451e148228e85eb4561f1d85
4
+ data.tar.gz: 958ccb9750586525cc02f811b31f0494b2486d66fa8b2e94adf2d75d40143636
5
5
  SHA512:
6
- metadata.gz: 51172cf4ab24e2f910886c3940097d96f7af89d657582aa4f13f4b9b9bf9cbbf140a8fa66bfdafcf2d492edb2d299582ee6bbb2c908ae0ee60b883dafd711c67
7
- data.tar.gz: c342ed932ee018391cec0e4a762b58437dde1ad87f69a1016a9b9078b27a1899ae525b0739474c702985a1c02f3ceea342ace1483863a7cda091347090d59973
6
+ metadata.gz: 3b3ee712debb08b8797f373e71ff55ae0356f7167d75f372efca951414ac306b61b8fab360cfd628ec5b034a46b353feefca3bfc4d7b07d4e6399e47cfa6e80a
7
+ data.tar.gz: 16b31b2e06f213eecc925719eba217e2b3c99ecbd64dc2559b8382a3e497e08541a3005581df27ca04b03729f304366f06e3aa64937a4cb9c3562d92b5c7a9e6
@@ -50,6 +50,7 @@ real_datadir="$MU_DATADIR"
50
50
 
51
51
 
52
52
  source $MU_INSTALLDIR/lib/install/deprecated-bash-library.sh
53
+
53
54
  # Chef can't pick a lane
54
55
  export PATH="/usr/local/ruby-current/bin:/usr/bin:/bin"
55
56
 
@@ -595,8 +596,6 @@ for repo in $REPOS;do
595
596
  add_berkshelf_cookbooks "$artifact_source"
596
597
  fi
597
598
 
598
- set +x
599
-
600
599
  if [ -d "$artifact_source/.git" ];then
601
600
  if [ "$use_on_disk" == "" ];then
602
601
  if [ "$branch" != "$lastbranch" -a "$discard" != "1" ];then
data/cloud-mu.gemspec CHANGED
@@ -17,10 +17,10 @@ end
17
17
 
18
18
  Gem::Specification.new do |s|
19
19
  s.name = 'cloud-mu'
20
- s.version = '3.6.7'
20
+ s.version = '3.6.8'
21
21
  s.date = '2024-11-28'
22
22
  s.require_paths = ['modules']
23
- s.required_ruby_version = '>= 3.3'
23
+ s.required_ruby_version = '>= 3'
24
24
  s.summary = "The eGTLabs Mu toolkit for unified cloud deployments"
25
25
  s.description = <<-EOF
26
26
  The eGTLabs Mu toolkit for unified cloud deployments. This gem contains the Mu deployment interface to cloud provider APIs. It will generate a sample configuration the first time it is invoked.
@@ -23,8 +23,11 @@
23
23
  # templates.
24
24
 
25
25
  chef_gem "aws-sigv4"
26
+
26
27
  chef_gem "cloud-mu" do
28
+ gem_binary "/opt/chef/embedded/bin/gem"
27
29
  compile_time true
30
+ action :install
28
31
  end
29
32
 
30
33
  require 'etc'
@@ -36,7 +36,7 @@ awsgems.each_pair { |g, v|
36
36
  gem_binary "/opt/chef/embedded/bin/gem"
37
37
  version v if !v.nil?
38
38
  compile_time true
39
- action :install
39
+ action :install
40
40
  end
41
41
  }
42
42
 
@@ -145,7 +145,7 @@ if [ "$library" != "1" ];then
145
145
  done
146
146
  else
147
147
  set +e
148
- set +x
148
+ # set +x
149
149
  fi
150
150
 
151
151
  umask 0077
@@ -249,7 +249,7 @@ if [ "$IN_AWS" == "1" ];then
249
249
  LOG_BUCKET_NAME="mu-logs-${HOST_NAME}-${MY_INSTANCE_ID}"
250
250
  fi
251
251
  for mac in `$GET_METADATA/meta-data/network/interfaces/macs/`;do
252
- vpc_id="`$GET_METADATA/meta-data/network/interfaces/macs/$mac/vpc-id | egrep '^vpc\-'`"
252
+ vpc_id="`$GET_METADATA/meta-data/network/interfaces/macs/$mac/vpc-id | egrep '^vpc-'`"
253
253
  if [ "$vpc_id" != "" ];then
254
254
  MY_VPC_ID=$vpc_id
255
255
  break
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud-mu
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.7
4
+ version: 3.6.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Stange
@@ -1332,14 +1332,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
1332
1332
  requirements:
1333
1333
  - - ">="
1334
1334
  - !ruby/object:Gem::Version
1335
- version: '3.3'
1335
+ version: '3'
1336
1336
  required_rubygems_version: !ruby/object:Gem::Requirement
1337
1337
  requirements:
1338
1338
  - - ">="
1339
1339
  - !ruby/object:Gem::Version
1340
1340
  version: '0'
1341
1341
  requirements: []
1342
- rubygems_version: 3.5.16
1342
+ rubygems_version: 3.4.10
1343
1343
  signing_key:
1344
1344
  specification_version: 4
1345
1345
  summary: The eGTLabs Mu toolkit for unified cloud deployments