cloud-mu 2.0.0.pre.beta3 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cec0ccf09208e41e9134e3c91298505d6e0166f5f08ff6bc36be3b470bbb99e9
4
- data.tar.gz: 67af0a4e21700506873ae591641acd7c4272c524cfe61b62f87e5bae98ec2423
3
+ metadata.gz: a502aa32bec686b8b7bab89693fdc498e28f9c996e43c7c16fa31082c6d62cce
4
+ data.tar.gz: 94658063047cb95596b04d1cdcb7d36c7fb45fed4bd77988d0d1b98d768adf57
5
5
  SHA512:
6
- metadata.gz: ef03c420882a307a26ef726dde97c40f571e21d7ec03727f3b28c10480da770c898a2edee1c30301f1178596a19c6bc0cc724d6a8ad43c44d75835321387f28e
7
- data.tar.gz: 0db7d823010c03a83da7040e50286321aed63967c8519e9e5b4791086fb0cf6c0ef63d56d45edb4e57c67fa49288c16feda14281611e42b5c3013fbbc905829e
6
+ metadata.gz: 1cb50fbf5a15aa6f000de324d51b350f2e2ea4b5eb6638f162db6254f387ed0eee8fc6bbc695e45ae17f3c9e6971643578ae65279ca5f37c14d7aff57f899fe3
7
+ data.tar.gz: 73967351f0cd53d037ff94aa2242b985cbcb3a97328fec67c14a01f7046145cea08eef6a52909b87d8258df7f379fa493cfd1b16ecf76d09a82d5982788ebd5c
data/README.md CHANGED
@@ -4,25 +4,24 @@ mu -- Cloudamatic Automation Tooling
4
4
  [![Gem Version](https://badge.fury.io/rb/cloud-mu.svg)](https://badge.fury.io/rb/cloud-mu)
5
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/dd4e5d867890336accd1/maintainability)](https://codeclimate.com/github/cloudamatic/mu/maintainability)
6
6
  [![Inline docs](http://inch-ci.org/github/cloudamatic/mu.svg?branch=master)](http://inch-ci.org/github/cloudamatic/mu)
7
- [![coverage report](https://gitlab.com/cloudamatic/mu/badges/master/coverage.svg)](https://gitlab.com/cloudamatic/mu/commits/master)
8
7
 
9
8
  # About mu
10
9
  **mu** is the deployer and developer toolset for the Cloudamatic complete cloud deployment solution, designed to provision, orchestrate and manage complex platforms and applications. mu provides Cloudamatic deployers and developers with the tools and commands to automate any arbitrarily complex application, platform or combination on a wide range of infrastructure targets, starting with AWS Cloud and including other clouds, virtualized environments and bare iron.
11
10
 
12
- For general information on Cloudamatic, see the [cloudamatic repository](https://github.com/cloudamatic/cloudamatic)
11
+ For general information on Cloudamatic, see the [cloudamatic repository](https://github.com/cloudamatic/cloudamatic)
13
12
 
14
- For more detailed information on Cloudamatic architecture and mu tooling usage, see our [wiki](https://github.com/cloudamatic/mu/wiki) in this repository.
13
+ For more detailed information on Cloudamatic architecture and mu tooling usage, see our [yard docs](https://cloudamatic.gitlab.io/mu/).
15
14
 
16
- The mu tooling is currently supported on RHEL or CentOS 6 in Amazon Web Services with RHEL/CentOS 7 in active development.
15
+ The mu tooling is currently supported on RHEL or CentOS 6/7.
17
16
 
18
17
  ## Installation
19
- Get started by clicking the Launch Button!!
18
+ See the [README](../master/install) in the install folder for mu master installation instructions
19
+
20
+ Alternatively, get started by clicking the Launch Button!!
20
21
 
21
22
  This does create all the AWS resources in us-east-1 region.
22
23
 
23
24
  [![Launch Stack](https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/new?stackName=CloudamaticInstaller&templateURL=https://s3.amazonaws.com/mu-cfn-installer/cfn_create_mu_master.json)
24
25
 
25
- See the [README](../master/install) in the install folder for mu master installation instructions
26
-
27
26
  ## Usage
28
27
  See the [Usage](https://github.com/cloudamatic/mu/wiki/Usage) section of our Wiki for an overview of how to use the mu tooling for deployment
@@ -1099,10 +1099,10 @@ if AMROOT and ($INITIALIZE or $CHANGES.include?("chefartifacts"))
1099
1099
  if $?.exitstatus != 0
1100
1100
  puts output
1101
1101
  MU.log "mu-upload-chef-artifacts failed, can't proceed", MU::ERR
1102
- %x{/sbin/service iptables start} if $INITIALIZE
1102
+ %x{/sbin/service iptables start} if !$INITIALIZE
1103
1103
  exit 1
1104
1104
  end
1105
- %x{/sbin/service iptables start} if $INITIALIZE
1105
+ %x{/sbin/service iptables start} if !$INITIALIZE
1106
1106
  end
1107
1107
 
1108
1108
  if $INITIALIZE and AMROOT
@@ -1168,7 +1168,7 @@ if AMROOT
1168
1168
  %x{/sbin/service iptables stop}
1169
1169
  system("/opt/opscode/bin/chef-server-ctl reconfigure")
1170
1170
  system("/opt/opscode/bin/chef-server-ctl restart")
1171
- %x{/sbin/service iptables start}
1171
+ %x{/sbin/service iptables start} if !$INITIALIZE
1172
1172
  updateChefRbs
1173
1173
  $CHANGES << "chefcerts"
1174
1174
  else
@@ -190,7 +190,7 @@ if [ "$chef_major" == "12" ];then
190
190
  elif [ "$DIST_VERSION" == "server" ];then # funny package name in RHEL6
191
191
  DIST_VERSION="6"
192
192
  fi
193
- rpm -Uvh https://packages.chef.io/files/stable/chef/14.4.56/el/${DIST_VERSION}/chef-14.4.56-1.el${DIST_VERSION}.x86_64.rpm
193
+ rpm -Uvh https://packages.chef.io/files/stable/chef/14.11.21/el/${DIST_VERSION}/chef-14.11.21-1.el${DIST_VERSION}.x86_64.rpm
194
194
  fi
195
195
 
196
196
  /opt/chef/bin/chef-apply $MU_LIBDIR/cookbooks/mu-master/recipes/init.rb
@@ -17,7 +17,7 @@ end
17
17
 
18
18
  Gem::Specification.new do |s|
19
19
  s.name = 'cloud-mu'
20
- s.version = '2.0.0-beta3'
20
+ s.version = '2.0.1'
21
21
  s.date = '2019-03-01'
22
22
  s.require_paths = ['modules']
23
23
  s.required_ruby_version = '>= 2.4'
@@ -36,7 +36,7 @@ ENV['PATH'] = ENV['PATH']+":/bin:/opt/opscode/embedded/bin"
36
36
  # XXX We want to be able to override these things when invoked from chef-apply,
37
37
  # but, like, how?
38
38
  CHEF_SERVER_VERSION="12.17.15-1"
39
- CHEF_CLIENT_VERSION="14.4.56"
39
+ CHEF_CLIENT_VERSION="14.11.21"
40
40
  KNIFE_WINDOWS="1.9.0"
41
41
  MU_BASE="/opt/mu"
42
42
  MU_BRANCH="master" # GIT HOOK EDITABLE DO NOT TOUCH
@@ -65,6 +65,9 @@ else
65
65
  notifies :restart, "service[sshd]", :immediately
66
66
  end
67
67
  SSH_USER="root"
68
+ execute "/sbin/service sshd start" do # ~FC004
69
+ ignore_failure true # the service restart often fails to leave sshd alive
70
+ end
68
71
  end
69
72
  RUNNING_STANDALONE=node['application_attributes'].nil?
70
73
 
@@ -130,7 +133,9 @@ execute "reconfigure Chef server" do
130
133
  # notifies :create, "link[/tmp/.s.PGSQL.5432]", :before
131
134
  notifies :create, "link[/var/run/postgresql/.s.PGSQL.5432]", :before
132
135
  notifies :restart, "service[chef-server]", :immediately
133
- notifies :start, "service[iptables]", :immediately
136
+ if !RUNNING_STANDALONE
137
+ notifies :start, "service[iptables]", :immediately
138
+ end
134
139
  only_if { RUNNING_STANDALONE }
135
140
  end
136
141
  execute "upgrade Chef server" do
@@ -141,7 +146,9 @@ execute "upgrade Chef server" do
141
146
  notifies :run, "execute[Chef Server rabbitmq workaround]", :before
142
147
  # notifies :create, "link[/tmp/.s.PGSQL.5432]", :before
143
148
  notifies :create, "link[/var/run/postgresql/.s.PGSQL.5432]", :before
144
- notifies :start, "service[iptables]", :immediately
149
+ if !RUNNING_STANDALONE
150
+ notifies :start, "service[iptables]", :immediately
151
+ end
145
152
  only_if { RUNNING_STANDALONE }
146
153
  end
147
154
  service "chef-server" do
@@ -153,7 +160,9 @@ service "chef-server" do
153
160
  # notifies :create, "link[/tmp/.s.PGSQL.5432]", :before
154
161
  # notifies :create, "link[/var/run/postgresql/.s.PGSQL.5432]", :before
155
162
  notifies :stop, "service[iptables]", :before
156
- notifies :start, "service[iptables]", :immediately
163
+ if !RUNNING_STANDALONE
164
+ notifies :start, "service[iptables]", :immediately
165
+ end
157
166
  only_if { RUNNING_STANDALONE }
158
167
  end
159
168
 
@@ -299,16 +308,19 @@ rpms.each_pair { |pkg, src|
299
308
  if pkg == "ruby25"
300
309
  options '--prefix=/opt/rubies/'
301
310
  end
302
- if pkg == "chef-server-core" and File.size?("/etc/opscode/chef-server.rb")
303
- # On a normal install this will execute when we set up chef-server.rb,
304
- # but on a reinstall or an install on an image where that file already
305
- # exists, we need to invoke this some other way.
306
- notifies :run, "execute[reconfigure Chef server]", :immediately
307
- only_if { RUNNING_STANDALONE }
311
+ if pkg == "chef-server-core"
312
+ notifies :stop, "service[iptables]", :before
313
+ if File.size?("/etc/opscode/chef-server.rb")
314
+ # On a normal install this will execute when we set up chef-server.rb,
315
+ # but on a reinstall or an install on an image where that file already
316
+ # exists, we need to invoke this some other way.
317
+ notifies :run, "execute[reconfigure Chef server]", :immediately
318
+ only_if { RUNNING_STANDALONE }
319
+ end
308
320
  end
309
321
  end
310
322
  }
311
- package "jq" do
323
+ package ["jq"] do
312
324
  ignore_failure true # sometimes we can't see EPEL immediately
313
325
  end
314
326
  package removepackages do
@@ -443,7 +455,9 @@ execute "initial Chef artifact upload" do
443
455
  action :nothing
444
456
  notifies :stop, "service[iptables]", :before
445
457
  notifies :run, "execute[knife ssl fetch]", :before
446
- notifies :start, "service[iptables]", :immediately
458
+ if !RUNNING_STANDALONE
459
+ notifies :start, "service[iptables]", :immediately
460
+ end
447
461
  only_if { RUNNING_STANDALONE }
448
462
  end
449
463
  chef_gem "simple-password-gen" do
@@ -529,11 +543,10 @@ end
529
543
 
530
544
  file "#{MU_BASE}/etc/mu.rc" do
531
545
  content %Q{export MU_INSTALLDIR="#{MU_BASE}"
532
- export MU_DATADIR="#{MU_BASE}/var"
533
- export PATH="#{MU_BASE}/bin:/usr/local/ruby-current/bin:${PATH}:/opt/opscode/embedded/bin"
546
+ export MU_DATADIR="#{MU_BASE}/var"
547
+ export PATH="#{MU_BASE}/bin:/usr/local/ruby-current/bin:${PATH}:/opt/opscode/embedded/bin"
534
548
  }
535
549
  mode 0644
536
- action :create_if_missing
537
550
  end
538
551
 
539
552
  # Community cookbooks keep touching gems, and none of them are smart about our
@@ -2,7 +2,7 @@
2
2
 
3
3
  BOLD=`tput bold`
4
4
  NORM=`tput sgr0`
5
- CHEF_CLIENT_VERSION="14.4.56"
5
+ CHEF_CLIENT_VERSION="14.11.21"
6
6
  if [ "$MU_BRANCH" == "" ];then
7
7
  MU_BRANCH="master"
8
8
  mydir="`dirname $0`"
@@ -1 +1 @@
1
- modules/../bin/mu-load-config.rb
1
+ ../bin/mu-load-config.rb
@@ -1,54 +1,55 @@
1
1
  ---
2
+ rhel71: &rhel71
3
+ us-east-1: ami-001ac4e5f414fc5b7
4
+ ap-northeast-1: ami-0094aa64967e9267d
5
+ ap-northeast-2: ami-072783bf50ca01ef7
6
+ ap-south-1: ami-000dc63c34c0db03b
7
+ ap-southeast-1: ami-0071d32a62d9d4606
8
+ ap-southeast-2: ami-0b7d54e6e42953f86
9
+ ca-central-1: ami-030fca7144c43215b
10
+ eu-central-1: ami-0b12d33bdc71041b3
11
+ eu-north-1: ami-0ba21cb3a943bb4ac
12
+ eu-west-1: ami-01b49e185bd437c10
13
+ eu-west-2: ami-0ceaff3ec2ae851f4
14
+ eu-west-3: ami-094b03f307a2a7aed
15
+ sa-east-1: ami-0114382549fca3675
16
+ us-east-2: ami-00cc9f964320129d7
17
+ us-west-1: ami-0110a4f8a96b24369
18
+ us-west-2: ami-0006d7ea260e40777
2
19
  centos6: &centos6
3
- us-east-1: ami-031c0cc3c2370522a
4
- us-east-2: ami-004185c521f790e85
5
- ca-central-1: ami-037f8f04b5843f97e
6
- us-west-1: ami-033d14882e6f7522e
7
- us-west-2: ami-0caa998eac4f5436e
8
- eu-north-1: ami-065fab8329e335b67
9
- eu-west-1: ami-08e9b000435f89ab7
10
- eu-west-2: ami-0cb1902fa3a569682
11
- eu-west-3: ami-09fd2841f10148bd4
12
- eu-central-1: ami-051014d06fa9028f0
13
- sa-east-1: ami-0759cf5e576765966
14
- ap-northeast-1: ami-00911f5aa722c9188
15
- ap-northeast-2: ami-0b6b2e990c40e1a81
16
- ap-southeast-1: ami-04788891037bf442b
17
- ap-southeast-2: ami-077c64c67f6298135
18
- ap-south-1: ami-0d3003ab15517aa57
20
+ us-east-1: ami-02f468ed191eda16e
21
+ ap-northeast-1: ami-0211c03a05f62bd88
22
+ ap-northeast-2: ami-0c4e210038a6c79a0
23
+ ap-south-1: ami-0679b5acba08097b4
24
+ ap-southeast-1: ami-0d06903ec09d67b84
25
+ ap-southeast-2: ami-07fcb5609d11b08c2
26
+ ca-central-1: ami-0090ac3d146715c76
27
+ eu-central-1: ami-0402323ff6cf59dc3
28
+ eu-north-1: ami-0c8c61870da56e00c
29
+ eu-west-1: ami-02b5e95243d740d41
30
+ eu-west-2: ami-0d3086afa04c0bac9
31
+ eu-west-3: ami-07810e092578b4d32
32
+ sa-east-1: ami-05f5c9f4fd81c0ae8
33
+ us-east-2: ami-039668d561db19b15
34
+ us-west-1: ami-09403e40a997f60bf
35
+ us-west-2: ami-0728d0eef40a5430b
19
36
  centos7: &centos7
20
- us-east-1: ami-0ef5f2e616e2aa285
21
- us-east-2: ami-09d93af8d0893601b
22
- ca-central-1: ami-0437088d4d7dff4ec
23
- us-west-1: ami-010af7263e4f309b5
24
- us-west-2: ami-07575330a20c359aa
25
- eu-north-1: ami-0fad6cbb40b96e061
26
- eu-west-1: ami-08e8a755cfa5c3829
27
- eu-west-2: ami-05faf9b3ebe0bfc1e
28
- eu-west-3: ami-04359f179101f6348
29
- eu-central-1: ami-00e88989c795990c1
30
- sa-east-1: ami-02137b7b0cb45f7eb
31
- ap-northeast-1: ami-021c2c12c220e15ee
32
- ap-northeast-2: ami-0b389cd003355766f
33
- ap-southeast-1: ami-02b2c2161ea3e5198
34
- ap-southeast-2: ami-007cbbc05ba6a5b17
35
- ap-south-1: ami-0af0fa24f2658e84c
36
- us-gov-west-1: ami-93810af2
37
- rhel71: &rhel71
38
- us-east-1: ami-a6ae82b0
39
- us-east-2: ami-5189af34
40
- ca-central-1: ami-eada658e
41
- us-west-1: ami-3ee2cf5e
42
- us-west-2: ami-09aea470
43
- eu-west-1: ami-1fb9a079
44
- eu-west-2: ami-7b77611f
45
- eu-central-1: ami-146bcc7b
46
- sa-east-1: ami-aa563dc6
47
- ap-northeast-1: ami-ac949ecb
48
- ap-northeast-2: ami-9fd708f1
49
- ap-southeast-1: ami-5042cf33
50
- ap-southeast-2: ami-30495953
51
- ap-south-1: ami-aa563dc6
37
+ us-east-1: ami-0d98f625837fb042e
38
+ ap-northeast-1: ami-0f86cf4470a454938
39
+ ap-northeast-2: ami-012efba9ff5419589
40
+ ap-south-1: ami-04e731f4d6326d325
41
+ ap-southeast-1: ami-02681d776b7423616
42
+ ap-southeast-2: ami-0698ffe618d32f646
43
+ ca-central-1: ami-0b3694010c727e53c
44
+ eu-central-1: ami-0c0c6cdd0f9c89eee
45
+ eu-north-1: ami-0d0733de529946b69
46
+ eu-west-1: ami-08bf01bb9f0936a9e
47
+ eu-west-2: ami-0f05b2aca51a93c8f
48
+ eu-west-3: ami-0e166992266815e9a
49
+ sa-east-1: ami-01ad79445dd17247f
50
+ us-east-2: ami-00c5f50b43ecdb248
51
+ us-west-1: ami-0cc4055a6417e4df6
52
+ us-west-2: ami-0c250c14d31f0847f
52
53
  ubuntu16: &ubuntu16
53
54
  us-east-1: ami-bcdc16c6
54
55
  us-west-1: ami-1b17257b
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: 2.0.0.pre.beta3
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Stange
@@ -354,25 +354,24 @@ description: |+
354
354
  email: eGTLabs@eglobaltech.com
355
355
  executables:
356
356
  - mu-upload-chef-artifacts
357
- - mu-load-config.rb
358
- - mu-firewall-allow-clients
357
+ - mu-configure
359
358
  - mu-gen-docs
360
359
  - mu-gcp-setup
361
- - mu-gen-env
360
+ - mu-tunnel-nagios
362
361
  - mu-deploy
362
+ - mu-firewall-allow-clients
363
+ - mu-self-update
364
+ - mu-user-manage
365
+ - mu-load-config.rb
363
366
  - mu-node-manage
364
- - mu-cleanup
365
367
  - mu-ssh
368
+ - mu-cleanup
369
+ - mu-gen-env
366
370
  - mu-aws-setup
367
- - mu-user-manage
368
- - mu-self-update
369
- - mu-configure
370
- - mu-tunnel-nagios
371
371
  extensions: []
372
372
  extra_rdoc_files: []
373
373
  files:
374
374
  - Berksfile
375
- - Berksfile.lock
376
375
  - Jenkinsfile
377
376
  - LICENSE.md
378
377
  - README.md
@@ -598,7 +597,6 @@ files:
598
597
  - cookbooks/mu-tools/files/centos/etc/security/limits.conf
599
598
  - cookbooks/mu-tools/files/centos/etc/sysconfig/init
600
599
  - cookbooks/mu-tools/files/centos/etc/sysctl.conf
601
- - cookbooks/mu-tools/files/default/Mu_CA.pem
602
600
  - cookbooks/mu-tools/files/default/PSWindowsUpdate.zip
603
601
  - cookbooks/mu-tools/files/default/ebs_snapshots.py
604
602
  - cookbooks/mu-tools/files/default/etc/BANNER
@@ -960,7 +958,6 @@ files:
960
958
  - modules/mu/groomer.rb
961
959
  - modules/mu/groomers/README.md
962
960
  - modules/mu/groomers/chef.rb
963
- - modules/mu/kittens.rb
964
961
  - modules/mu/logger.rb
965
962
  - modules/mu/master.rb
966
963
  - modules/mu/master/README.md
@@ -1033,12 +1030,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
1033
1030
  version: '2.4'
1034
1031
  required_rubygems_version: !ruby/object:Gem::Requirement
1035
1032
  requirements:
1036
- - - ">"
1033
+ - - ">="
1037
1034
  - !ruby/object:Gem::Version
1038
- version: 1.3.1
1035
+ version: '0'
1039
1036
  requirements: []
1040
- rubyforge_project:
1041
- rubygems_version: 2.7.6
1037
+ rubygems_version: 3.0.3
1042
1038
  signing_key:
1043
1039
  specification_version: 4
1044
1040
  summary: The eGTLabs Mu toolkit for unified cloud deployments
@@ -1,202 +0,0 @@
1
- DEPENDENCIES
2
- awscli
3
- path: cookbooks/awscli
4
- mu-activedirectory
5
- mu-firewall
6
- mu-glusterfs
7
- mu-jenkins
8
- mu-master
9
- mu-mongo
10
- mu-openvpn
11
- mu-php54
12
- mu-splunk
13
- mu-tools
14
- mu-utility
15
- nagios
16
- path: cookbooks/nagios
17
-
18
- GRAPH
19
- apache2 (3.3.1)
20
- apt (7.1.1)
21
- awscli (0.2.1)
22
- bind (2.2.1)
23
- bind9-ng (0.1.0)
24
- build-essential (8.2.1)
25
- mingw (>= 1.1)
26
- seven_zip (>= 0.0.0)
27
- chef-sugar (5.0.0)
28
- chef-vault (3.1.1)
29
- chef_nginx (6.2.0)
30
- build-essential (>= 0.0.0)
31
- compat_resource (>= 12.16.3)
32
- ohai (>= 4.1.0)
33
- yum-epel (>= 0.0.0)
34
- zypper (>= 0.0.0)
35
- compat_resource (12.19.1)
36
- consul (2.3.0)
37
- build-essential (>= 0.0.0)
38
- firewall (~> 2.0)
39
- golang (>= 0.0.0)
40
- nssm (>= 0.0.0)
41
- poise (~> 2.2)
42
- poise-archive (~> 1.3)
43
- poise-service (~> 1.4)
44
- consul-cluster (2.0.0)
45
- consul (~> 2.1)
46
- ssl_certificate (~> 1.11)
47
- cpan (0.1.0)
48
- database (6.1.1)
49
- postgresql (>= 1.0.0)
50
- dpkg_autostart (0.2.0)
51
- firewall (2.7.0)
52
- chef-sugar (>= 0.0.0)
53
- golang (1.7.0)
54
- hashicorp-vault (2.5.0)
55
- build-essential (>= 0.0.0)
56
- golang (~> 1.7)
57
- poise (~> 2.6)
58
- poise-service (~> 1.1)
59
- rubyzip (~> 1.0)
60
- homebrew (5.0.8)
61
- hostsfile (3.0.1)
62
- java (2.2.1)
63
- homebrew (>= 0.0.0)
64
- windows (>= 0.0.0)
65
- jenkins (6.2.1)
66
- dpkg_autostart (>= 0.0.0)
67
- runit (>= 1.7)
68
- mingw (2.1.0)
69
- seven_zip (>= 0.0.0)
70
- mongodb (0.16.2)
71
- apt (>= 1.8.2)
72
- python (>= 0.0.0)
73
- runit (>= 1.5.0)
74
- yum (>= 3.0)
75
- mu-activedirectory (0.2.0)
76
- chef-vault (~> 3.1.1)
77
- windows (~> 5.1.1)
78
- yum-epel (~> 3.2.0)
79
- mu-firewall (0.1.0)
80
- firewall (~> 2.7.0)
81
- mu-glusterfs (0.1.0)
82
- mu-firewall (>= 0.0.0)
83
- yum (~> 5.1.0)
84
- mu-jenkins (0.6.0)
85
- chef-vault (~> 3.1.1)
86
- java (~> 2.2.0)
87
- jenkins (~> 6.2.0)
88
- mu-master (>= 0.0.0)
89
- mu-tools (>= 0.0.0)
90
- mu-utility (>= 0.0.0)
91
- mu-master (0.9.3)
92
- apache2 (< 4.0)
93
- bind (~> 2.2.0)
94
- bind9-ng (~> 0.1.0)
95
- chef-vault (~> 3.1.1)
96
- consul-cluster (~> 2.0.0)
97
- hostsfile (~> 3.0.1)
98
- mu-activedirectory (>= 0.0.0)
99
- mu-firewall (>= 0.0.0)
100
- mu-tools (>= 0.0.0)
101
- mu-utility (>= 0.0.0)
102
- nagios (>= 0.0.0)
103
- nrpe (~> 2.0.3)
104
- postfix (~> 5.3.1)
105
- s3fs (>= 0.0.0)
106
- vault-cluster (~> 2.1.0)
107
- mu-mongo (0.5.0)
108
- chef-vault (~> 3.1.1)
109
- mongodb (~> 0.16.2)
110
- mu-openvpn (0.1.0)
111
- chef-vault (~> 3.1.1)
112
- mu-firewall (>= 0.0.0)
113
- mu-utility (>= 0.0.0)
114
- mu-php54 (0.3.0)
115
- apache2 (< 4.0)
116
- mu-utility (>= 0.0.0)
117
- mysql (~> 8.5.1)
118
- simple_iptables (~> 0.8.0)
119
- yum-epel (~> 3.2.0)
120
- mu-splunk (1.3.0)
121
- chef-vault (>= 1.0.4)
122
- mu-tools (1.0.4)
123
- chef-vault (~> 3.1.1)
124
- database (~> 6.1.1)
125
- java (~> 2.2.0)
126
- mu-activedirectory (>= 0.0.0)
127
- mu-firewall (>= 0.0.0)
128
- mu-splunk (>= 0.0.0)
129
- mu-utility (>= 0.0.0)
130
- nagios (>= 0.0.0)
131
- oracle-instantclient (~> 1.1.0)
132
- poise-python (~> 1.7.0)
133
- postgresql (~> 7.1.0)
134
- windows (~> 5.1.1)
135
- yum-epel (~> 3.2.0)
136
- mu-utility (0.6.0)
137
- mu-firewall (>= 0.0.0)
138
- windows (~> 5.1.1)
139
- mysql (8.5.1)
140
- nagios (7.2.7)
141
- apache2 (< 4.0)
142
- chef_nginx (>= 0.0.0)
143
- nginx_simplecgi (>= 0.0.0)
144
- nrpe (>= 0.0.0)
145
- php (< 6.0)
146
- yum-epel (>= 0.0.0)
147
- zap (>= 0.6.0)
148
- nginx_simplecgi (0.2.0)
149
- chef_nginx (>= 0.0.0)
150
- perl (>= 0.0.0)
151
- runit (>= 0.0.0)
152
- yum-epel (>= 0.0.0)
153
- nrpe (2.0.5)
154
- build-essential (>= 0.0.0)
155
- yum-epel (>= 0.0.0)
156
- nssm (4.0.1)
157
- windows (>= 0.0.0)
158
- ohai (5.2.5)
159
- oracle-instantclient (1.1.0)
160
- build-essential (>= 0.0.0)
161
- cpan (>= 0.0.0)
162
- php (>= 0.0.0)
163
- packagecloud (1.0.1)
164
- perl (7.0.1)
165
- php (5.1.0)
166
- build-essential (>= 0.0.0)
167
- yum-epel (>= 0.0.0)
168
- poise (2.8.2)
169
- poise-archive (1.5.0)
170
- poise (~> 2.6)
171
- poise-languages (2.1.2)
172
- poise (~> 2.5)
173
- poise-archive (~> 1.0)
174
- poise-python (1.7.0)
175
- poise (~> 2.7)
176
- poise-languages (~> 2.0)
177
- poise-service (1.5.2)
178
- poise (~> 2.0)
179
- postfix (5.3.1)
180
- postgresql (7.1.3)
181
- python (1.4.6)
182
- build-essential (>= 0.0.0)
183
- yum-epel (>= 0.0.0)
184
- rubyzip (1.3.1)
185
- poise (~> 2.2)
186
- runit (5.0.1)
187
- packagecloud (>= 0.0.0)
188
- yum-epel (>= 0.0.0)
189
- s3fs (3.0.1)
190
- seven_zip (3.1.0)
191
- windows (>= 0.0.0)
192
- simple_iptables (0.8.0)
193
- ssl_certificate (1.12.0)
194
- vault-cluster (2.1.0)
195
- consul-cluster (~> 2.0)
196
- hashicorp-vault (~> 2.1)
197
- ssl_certificate (~> 1.11)
198
- windows (5.1.6)
199
- yum (5.1.0)
200
- yum-epel (3.2.0)
201
- zap (1.1.0)
202
- zypper (0.4.0)