cloud-mu 3.6.9 → 3.6.11
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/Berksfile +2 -3
- data/Berksfile.lock +11 -14
- data/bin/mu-aws-setup +16 -4
- data/bin/mu-configure +2 -1
- data/cloud-mu.gemspec +2 -2
- data/cookbooks/mu-firewall/Berksfile +1 -1
- data/cookbooks/mu-firewall/attributes/default.rb +2 -2
- data/cookbooks/mu-firewall/metadata.rb +3 -3
- data/cookbooks/mu-firewall/recipes/default.rb +11 -2
- data/cookbooks/mu-master/Berksfile +1 -1
- data/cookbooks/mu-master/attributes/default.rb +14 -1
- data/cookbooks/mu-master/files/default/389ds-perl/ASDialogs.pm +173 -0
- data/cookbooks/mu-master/files/default/389ds-perl/AdminMigration.pm +569 -0
- data/cookbooks/mu-master/files/default/389ds-perl/AdminServer.pm +952 -0
- data/cookbooks/mu-master/files/default/389ds-perl/AdminUtil.pm +983 -0
- data/cookbooks/mu-master/files/default/389ds-perl/ConfigDSDialogs.pm +449 -0
- data/cookbooks/mu-master/files/default/389ds-perl/DSCreate.pm +1551 -0
- data/cookbooks/mu-master/files/default/389ds-perl/DSDialogs.pm +233 -0
- data/cookbooks/mu-master/files/default/389ds-perl/DSMigration.pm +1175 -0
- data/cookbooks/mu-master/files/default/389ds-perl/DSUpdate.pm +534 -0
- data/cookbooks/mu-master/files/default/389ds-perl/DSUpdateDialogs.pm +152 -0
- data/cookbooks/mu-master/files/default/389ds-perl/DSUtil.pm +1710 -0
- data/cookbooks/mu-master/files/default/389ds-perl/Dialog.pm +249 -0
- data/cookbooks/mu-master/files/default/389ds-perl/DialogManager.pm +212 -0
- data/cookbooks/mu-master/files/default/389ds-perl/FileConn.pm +461 -0
- data/cookbooks/mu-master/files/default/389ds-perl/Inf.pm +268 -0
- data/cookbooks/mu-master/files/default/389ds-perl/Migration.pm +327 -0
- data/cookbooks/mu-master/files/default/389ds-perl/RegDSDialogs.pm +94 -0
- data/cookbooks/mu-master/files/default/389ds-perl/Resource.pm +137 -0
- data/cookbooks/mu-master/files/default/389ds-perl/Setup.pm +240 -0
- data/cookbooks/mu-master/files/default/389ds-perl/SetupDialogs.pm +243 -0
- data/cookbooks/mu-master/files/default/389ds-perl/SetupLog.pm +82 -0
- data/cookbooks/mu-master/files/default/setCertName.ldif +4 -0
- data/cookbooks/mu-master/libraries/mu.rb +2 -2
- data/cookbooks/mu-master/metadata.rb +1 -1
- data/cookbooks/mu-master/recipes/389ds.rb +71 -32
- data/cookbooks/mu-master/recipes/basepackages.rb +5 -0
- data/cookbooks/mu-master/recipes/default.rb +16 -5
- data/cookbooks/mu-master/recipes/init.rb +59 -4
- data/cookbooks/mu-master/recipes/ssl-certs.rb +6 -0
- data/cookbooks/mu-master/recipes/sssd.rb +85 -62
- data/cookbooks/mu-master/recipes/update_nagios_only.rb +7 -1
- data/cookbooks/mu-master/templates/default/389-directory-setup.inf.erb +11 -26
- data/cookbooks/mu-master/templates/default/sssd.conf.erb +18 -8
- data/cookbooks/mu-tools/files/default/Mu_CA.pem +33 -0
- data/cookbooks/mu-tools/metadata.rb +0 -1
- data/cookbooks/mu-tools/recipes/set_local_fw.rb +7 -1
- data/cookbooks/mu-tools/templates/amazon/sshd_config.erb +5 -1
- data/cookbooks/nagios/CHANGELOG.md +679 -0
- data/cookbooks/nagios/LICENSE +201 -0
- data/cookbooks/nagios/README.md +340 -0
- data/cookbooks/nagios/attributes/config.rb +163 -0
- data/cookbooks/nagios/attributes/default.rb +204 -0
- data/cookbooks/nagios/libraries/base.rb +311 -0
- data/cookbooks/nagios/libraries/command.rb +68 -0
- data/cookbooks/nagios/libraries/contact.rb +229 -0
- data/cookbooks/nagios/libraries/contactgroup.rb +111 -0
- data/cookbooks/{firewall/recipes/disable_firewall.rb → nagios/libraries/custom_option.rb} +20 -7
- data/cookbooks/nagios/libraries/data_bag_helper.rb +23 -0
- data/cookbooks/nagios/libraries/default.rb +90 -0
- data/cookbooks/nagios/libraries/helpers.rb +229 -0
- data/cookbooks/nagios/libraries/host.rb +410 -0
- data/cookbooks/nagios/libraries/hostdependency.rb +178 -0
- data/cookbooks/nagios/libraries/hostescalation.rb +170 -0
- data/cookbooks/nagios/libraries/hostgroup.rb +117 -0
- data/cookbooks/nagios/libraries/nagios.rb +277 -0
- data/cookbooks/nagios/libraries/resource.rb +59 -0
- data/cookbooks/nagios/libraries/service.rb +449 -0
- data/cookbooks/nagios/libraries/servicedependency.rb +213 -0
- data/cookbooks/nagios/libraries/serviceescalation.rb +193 -0
- data/cookbooks/nagios/libraries/servicegroup.rb +142 -0
- data/cookbooks/nagios/libraries/timeperiod.rb +159 -0
- data/cookbooks/nagios/libraries/users_helper.rb +54 -0
- data/cookbooks/nagios/metadata.json +44 -0
- data/cookbooks/nagios/metadata.rb +22 -0
- data/cookbooks/nagios/recipes/_load_databag_config.rb +153 -0
- data/cookbooks/nagios/recipes/_load_default_config.rb +241 -0
- data/cookbooks/nagios/recipes/apache.rb +114 -0
- data/cookbooks/nagios/recipes/default.rb +41 -0
- data/cookbooks/nagios/recipes/nginx.rb +114 -0
- data/cookbooks/nagios/recipes/pagerduty.rb +95 -0
- data/cookbooks/nagios/recipes/server.rb +182 -0
- data/cookbooks/nagios/recipes/server_package.rb +85 -0
- data/cookbooks/nagios/recipes/server_source.rb +137 -0
- data/cookbooks/nagios/resources/command.rb +34 -0
- data/cookbooks/nagios/resources/conf.rb +52 -0
- data/cookbooks/nagios/resources/contact.rb +34 -0
- data/cookbooks/nagios/resources/contactgroup.rb +35 -0
- data/cookbooks/nagios/resources/host.rb +35 -0
- data/cookbooks/nagios/resources/hostdependency.rb +35 -0
- data/cookbooks/nagios/resources/hostescalation.rb +36 -0
- data/cookbooks/nagios/resources/hostgroup.rb +35 -0
- data/cookbooks/nagios/resources/resource.rb +34 -0
- data/cookbooks/nagios/resources/service.rb +35 -0
- data/cookbooks/nagios/resources/servicedependency.rb +35 -0
- data/cookbooks/nagios/resources/serviceescalation.rb +35 -0
- data/cookbooks/nagios/resources/servicegroup.rb +35 -0
- data/cookbooks/nagios/resources/timeperiod.rb +35 -0
- data/cookbooks/nagios/templates/apache2.conf.erb +102 -0
- data/cookbooks/nagios/templates/cgi.cfg.erb +266 -0
- data/cookbooks/nagios/templates/commands.cfg.erb +13 -0
- data/cookbooks/nagios/templates/contacts.cfg.erb +37 -0
- data/cookbooks/nagios/templates/hostgroups.cfg.erb +25 -0
- data/cookbooks/nagios/templates/hosts.cfg.erb +15 -0
- data/cookbooks/nagios/templates/htpasswd.users.erb +6 -0
- data/cookbooks/nagios/templates/nagios.cfg.erb +22 -0
- data/cookbooks/nagios/templates/nginx.conf.erb +80 -0
- data/cookbooks/nagios/templates/pagerduty.cgi.erb +185 -0
- data/cookbooks/nagios/templates/resource.cfg.erb +27 -0
- data/cookbooks/nagios/templates/servicedependencies.cfg.erb +15 -0
- data/cookbooks/nagios/templates/servicegroups.cfg.erb +14 -0
- data/cookbooks/nagios/templates/services.cfg.erb +14 -0
- data/cookbooks/nagios/templates/spawn-fcgi.erb +10 -0
- data/cookbooks/nagios/templates/templates.cfg.erb +31 -0
- data/cookbooks/nagios/templates/timeperiods.cfg.erb +13 -0
- data/extras/platform_berksfile_base +3 -3
- data/extras/python_rpm/build.sh +4 -4
- data/extras/python_rpm/muthon.spec +2 -4
- data/extras/vault_tools/export_vaults.sh +11 -1
- data/install/installer +1 -1
- data/modules/mu/kittens.rb +27523 -0
- data/modules/mu/master/ldap.rb +48 -31
- data/modules/mu/master.rb +69 -0
- data/modules/mu/mu.yaml.rb +351 -0
- data/modules/mu/providers/aws/firewall_rule.rb +3 -1
- data/modules/mu/providers/aws.rb +27 -19
- data/modules/mu/providers/google.rb +1 -1
- data/modules/mu.rb +5 -4
- metadata +99 -48
- data/cookbooks/firewall/CHANGELOG.md +0 -488
- data/cookbooks/firewall/LICENSE +0 -202
- data/cookbooks/firewall/README.md +0 -366
- data/cookbooks/firewall/TODO.md +0 -6
- data/cookbooks/firewall/attributes/default.rb +0 -5
- data/cookbooks/firewall/attributes/firewalld.rb +0 -8
- data/cookbooks/firewall/attributes/iptables.rb +0 -17
- data/cookbooks/firewall/attributes/ufw.rb +0 -12
- data/cookbooks/firewall/attributes/windows.rb +0 -8
- data/cookbooks/firewall/libraries/helpers.rb +0 -105
- data/cookbooks/firewall/libraries/helpers_firewalld.rb +0 -116
- data/cookbooks/firewall/libraries/helpers_firewalld_dbus.rb +0 -72
- data/cookbooks/firewall/libraries/helpers_iptables.rb +0 -112
- data/cookbooks/firewall/libraries/helpers_nftables.rb +0 -170
- data/cookbooks/firewall/libraries/helpers_ufw.rb +0 -142
- data/cookbooks/firewall/libraries/helpers_windows.rb +0 -129
- data/cookbooks/firewall/libraries/provider_firewall_firewalld.rb +0 -179
- data/cookbooks/firewall/libraries/provider_firewall_iptables.rb +0 -171
- data/cookbooks/firewall/libraries/provider_firewall_iptables_ubuntu.rb +0 -200
- data/cookbooks/firewall/libraries/provider_firewall_iptables_ubuntu1404.rb +0 -200
- data/cookbooks/firewall/libraries/provider_firewall_rule.rb +0 -34
- data/cookbooks/firewall/libraries/provider_firewall_ufw.rb +0 -138
- data/cookbooks/firewall/libraries/provider_firewall_windows.rb +0 -126
- data/cookbooks/firewall/libraries/resource_firewall.rb +0 -26
- data/cookbooks/firewall/libraries/resource_firewall_rule.rb +0 -52
- data/cookbooks/firewall/metadata.json +0 -40
- data/cookbooks/firewall/metadata.rb +0 -15
- data/cookbooks/firewall/recipes/default.rb +0 -76
- data/cookbooks/firewall/recipes/firewalld.rb +0 -87
- data/cookbooks/firewall/resources/firewalld.rb +0 -28
- data/cookbooks/firewall/resources/firewalld_config.rb +0 -39
- data/cookbooks/firewall/resources/firewalld_helpers.rb +0 -106
- data/cookbooks/firewall/resources/firewalld_icmptype.rb +0 -88
- data/cookbooks/firewall/resources/firewalld_ipset.rb +0 -104
- data/cookbooks/firewall/resources/firewalld_policy.rb +0 -115
- data/cookbooks/firewall/resources/firewalld_service.rb +0 -98
- data/cookbooks/firewall/resources/firewalld_zone.rb +0 -118
- data/cookbooks/firewall/resources/nftables.rb +0 -71
- data/cookbooks/firewall/resources/nftables_rule.rb +0 -113
- data/cookbooks/firewall/templates/default/ufw/default.erb +0 -13
- /data/cookbooks/{firewall → nagios}/chefignore +0 -0
- /data/cookbooks/{firewall → nagios}/renovate.json +0 -0
data/modules/mu/providers/aws.rb
CHANGED
@@ -1645,21 +1645,23 @@ MU.log "Fetch of http://169.254.169.254/latest/meta-data/instance-id took #{spri
|
|
1645
1645
|
# rescues for known silly endpoint behavior.
|
1646
1646
|
def method_missing(method_sym, *arguments)
|
1647
1647
|
# make sure error symbols are loaded for our exception handling later
|
1648
|
-
require "aws-sdk-lambda"
|
1649
|
-
require "aws-sdk-rds"
|
1650
1648
|
require "aws-sdk-ec2"
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1649
|
+
if @api_name != "EC2"
|
1650
|
+
require "aws-sdk-lambda"
|
1651
|
+
require "aws-sdk-rds"
|
1652
|
+
require "aws-sdk-route53"
|
1653
|
+
require "aws-sdk-iam"
|
1654
|
+
require "aws-sdk-efs"
|
1655
|
+
require "aws-sdk-pricing"
|
1656
|
+
require "aws-sdk-apigateway"
|
1657
|
+
require "aws-sdk-ecs"
|
1658
|
+
require "aws-sdk-eks"
|
1659
|
+
require "aws-sdk-cloudwatchlogs"
|
1660
|
+
require "aws-sdk-cloudwatchevents"
|
1661
|
+
require "aws-sdk-elasticloadbalancing"
|
1662
|
+
require "aws-sdk-elasticloadbalancingv2"
|
1663
|
+
require "aws-sdk-autoscaling"
|
1664
|
+
end
|
1663
1665
|
|
1664
1666
|
known_concats = {
|
1665
1667
|
"Pricing" => {
|
@@ -1698,12 +1700,17 @@ MU.log "Fetch of http://169.254.169.254/latest/meta-data/instance-id took #{spri
|
|
1698
1700
|
|
1699
1701
|
if paginator and new_page and !new_page.empty?
|
1700
1702
|
resp = retval.respond_to?(:__getobj__) ? retval.__getobj__ : retval
|
1701
|
-
|
1702
|
-
|
1703
|
-
|
1703
|
+
# This one specific API has the dain bramage
|
1704
|
+
if resp.class.name != "Aws::Pricing::Types::GetProductsResponse"
|
1705
|
+
concat_to = MU.structToHash(resp).keys.reject { |m|
|
1706
|
+
m.to_s.match(/=$/) or m == paginator or resp.send(m).nil? or !resp.send(m).is_a?(Array)
|
1707
|
+
}
|
1708
|
+
end
|
1704
1709
|
|
1705
|
-
if concat_to.
|
1710
|
+
if (concat_to.nil? or concat_to.empty?) and
|
1711
|
+
known_concats[@api_name] and
|
1706
1712
|
known_concats[@api_name][method_sym]
|
1713
|
+
concat_to ||= []
|
1707
1714
|
concat_to << known_concats[@api_name][method_sym]
|
1708
1715
|
end
|
1709
1716
|
|
@@ -1750,7 +1757,8 @@ MU.log "Fetch of http://169.254.169.254/latest/meta-data/instance-id took #{spri
|
|
1750
1757
|
end
|
1751
1758
|
|
1752
1759
|
return retval
|
1753
|
-
rescue Aws::Lambda::Errors::TooManyRequestsException, Aws::RDS::Errors::Throttling, Aws::EC2::Errors::InternalError, Aws::EC2::Errors::RequestLimitExceeded, Aws::EC2::Errors::Unavailable, Aws::Route53::Errors::Throttling, Aws::ElasticLoadBalancing::Errors::HttpFailureException, Aws::EC2::Errors::Http503Error, Aws::AutoScaling::Errors::Http503Error, Aws::AutoScaling::Errors::InternalFailure, Aws::AutoScaling::Errors::ServiceUnavailable, Aws::Route53::Errors::ServiceUnavailable, Aws::ElasticLoadBalancing::Errors::Throttling, Aws::RDS::Errors::ClientUnavailable, Aws::Waiters::Errors::UnexpectedError, Aws::ElasticLoadBalancing::Errors::ServiceUnavailable, Aws::ElasticLoadBalancingV2::Errors::Throttling, Seahorse::Client::NetworkingError, Aws::IAM::Errors::Throttling, Aws::EFS::Errors::ThrottlingException, Aws::Pricing::Errors::ThrottlingException, Aws::APIGateway::Errors::TooManyRequestsException, Aws::ECS::Errors::ThrottlingException, Net::ReadTimeout, Faraday::TimeoutError, Aws::CloudWatchLogs::Errors::ThrottlingException => e
|
1760
|
+
# rescue Aws::Lambda::Errors::TooManyRequestsException, Aws::RDS::Errors::Throttling, Aws::EC2::Errors::InternalError, Aws::EC2::Errors::RequestLimitExceeded, Aws::EC2::Errors::Unavailable, Aws::Route53::Errors::Throttling, Aws::ElasticLoadBalancing::Errors::HttpFailureException, Aws::EC2::Errors::Http503Error, Aws::AutoScaling::Errors::Http503Error, Aws::AutoScaling::Errors::InternalFailure, Aws::AutoScaling::Errors::ServiceUnavailable, Aws::Route53::Errors::ServiceUnavailable, Aws::ElasticLoadBalancing::Errors::Throttling, Aws::RDS::Errors::ClientUnavailable, Aws::Waiters::Errors::UnexpectedError, Aws::ElasticLoadBalancing::Errors::ServiceUnavailable, Aws::ElasticLoadBalancingV2::Errors::Throttling, Seahorse::Client::NetworkingError, Aws::IAM::Errors::Throttling, Aws::EFS::Errors::ThrottlingException, Aws::Pricing::Errors::ThrottlingException, Aws::APIGateway::Errors::TooManyRequestsException, Aws::ECS::Errors::ThrottlingException, Net::ReadTimeout, Faraday::TimeoutError, Aws::CloudWatchLogs::Errors::ThrottlingException => e
|
1761
|
+
rescue Aws::Lambda::Errors::TooManyRequestsException, Aws::RDS::Errors::Throttling, Aws::EC2::Errors::InternalError, Aws::EC2::Errors::RequestLimitExceeded, Aws::EC2::Errors::Unavailable, Aws::Route53::Errors::Throttling, Aws::ElasticLoadBalancing::Errors::HttpFailureException, Aws::EC2::Errors::Http503Error, Aws::AutoScaling::Errors::Http503Error, Aws::AutoScaling::Errors::InternalFailure, Aws::AutoScaling::Errors::ServiceUnavailable, Aws::Route53::Errors::ServiceUnavailable, Aws::ElasticLoadBalancing::Errors::Throttling, Aws::RDS::Errors::ClientUnavailable, Aws::Waiters::Errors::UnexpectedError, Aws::ElasticLoadBalancing::Errors::ServiceUnavailable, Aws::ElasticLoadBalancingV2::Errors::Throttling, Seahorse::Client::NetworkingError, Aws::IAM::Errors::Throttling, Aws::EFS::Errors::ThrottlingException, Aws::Pricing::Errors::ThrottlingException, Aws::APIGateway::Errors::TooManyRequestsException, Aws::ECS::Errors::ThrottlingException, Net::ReadTimeout, Aws::CloudWatchLogs::Errors::ThrottlingException => e
|
1754
1762
|
if e.class.name == "Seahorse::Client::NetworkingError" and e.message.match(/Name or service not known/)
|
1755
1763
|
MU.log e.inspect, MU::ERR
|
1756
1764
|
raise e
|
@@ -12,7 +12,6 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
-
require 'googleauth'
|
16
15
|
require "net/http"
|
17
16
|
require 'net/https'
|
18
17
|
require 'multi_json'
|
@@ -529,6 +528,7 @@ MU.log e.message, MU::WARN, details: e.inspect
|
|
529
528
|
# for consumption by the various GCP APIs.
|
530
529
|
# @param scopes [Array<String>]: One or more scopes for which to authorizer the caller. Will vary depending on the API you're calling.
|
531
530
|
def self.loadCredentials(scopes = nil, credentials: nil)
|
531
|
+
require 'googleauth'
|
532
532
|
if @@authorizers[credentials] and @@authorizers[credentials][scopes.to_s]
|
533
533
|
return @@authorizers[credentials][scopes.to_s]
|
534
534
|
end
|
data/modules/mu.rb
CHANGED
@@ -788,7 +788,7 @@ module MU
|
|
788
788
|
end
|
789
789
|
|
790
790
|
# The version of Chef we will install on nodes.
|
791
|
-
@@chefVersion = "18.
|
791
|
+
@@chefVersion = "18.7.6"
|
792
792
|
# The version of Chef we will install on nodes.
|
793
793
|
# @return [String]
|
794
794
|
def self.chefVersion
|
@@ -892,13 +892,14 @@ module MU
|
|
892
892
|
begin
|
893
893
|
google_struct = struct.class.ancestors.include?(::Google::Apis::Core::Hashable)
|
894
894
|
rescue NameError
|
895
|
-
rescue TypeError
|
896
|
-
|
895
|
+
rescue TypeError => e
|
896
|
+
# XXX this just means we haven't loaded the google APIs, detect that state more cleanly and omit this entire block
|
897
|
+
return struct if e.message != "nil is not a class/module"
|
897
898
|
end
|
898
899
|
|
899
900
|
aws_struct = false
|
900
901
|
begin
|
901
|
-
aws_struct = struct.class.ancestors.include?(::Seahorse::Client::Response)
|
902
|
+
aws_struct = struct.class.ancestors.include?(::Seahorse::Client::Response) or struct.is_a?(Aws::EC2::Types::IpRange)
|
902
903
|
rescue NameError
|
903
904
|
rescue TypeError
|
904
905
|
return struct
|
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.
|
4
|
+
version: 3.6.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Stange
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: addressable
|
@@ -392,7 +392,6 @@ email: eGTLabs@eglobaltech.com
|
|
392
392
|
executables:
|
393
393
|
- mu-adopt
|
394
394
|
- mu-ansible-secret
|
395
|
-
- mu-aws-setup
|
396
395
|
- mu-azure-setup
|
397
396
|
- mu-azure-tests
|
398
397
|
- mu-cleanup
|
@@ -411,8 +410,9 @@ executables:
|
|
411
410
|
- mu-ssh
|
412
411
|
- mu-tunnel-nagios
|
413
412
|
- mu-user-manage
|
414
|
-
- mu-configure
|
415
413
|
- mu-upload-chef-artifacts
|
414
|
+
- mu-aws-setup
|
415
|
+
- mu-configure
|
416
416
|
extensions: []
|
417
417
|
extra_rdoc_files: []
|
418
418
|
files:
|
@@ -562,49 +562,6 @@ files:
|
|
562
562
|
- cookbooks/awscli/metadata.rb
|
563
563
|
- cookbooks/awscli/recipes/default.rb
|
564
564
|
- cookbooks/awscli/templates/default/config.erb
|
565
|
-
- cookbooks/firewall/CHANGELOG.md
|
566
|
-
- cookbooks/firewall/LICENSE
|
567
|
-
- cookbooks/firewall/README.md
|
568
|
-
- cookbooks/firewall/TODO.md
|
569
|
-
- cookbooks/firewall/attributes/default.rb
|
570
|
-
- cookbooks/firewall/attributes/firewalld.rb
|
571
|
-
- cookbooks/firewall/attributes/iptables.rb
|
572
|
-
- cookbooks/firewall/attributes/ufw.rb
|
573
|
-
- cookbooks/firewall/attributes/windows.rb
|
574
|
-
- cookbooks/firewall/chefignore
|
575
|
-
- cookbooks/firewall/libraries/helpers.rb
|
576
|
-
- cookbooks/firewall/libraries/helpers_firewalld.rb
|
577
|
-
- cookbooks/firewall/libraries/helpers_firewalld_dbus.rb
|
578
|
-
- cookbooks/firewall/libraries/helpers_iptables.rb
|
579
|
-
- cookbooks/firewall/libraries/helpers_nftables.rb
|
580
|
-
- cookbooks/firewall/libraries/helpers_ufw.rb
|
581
|
-
- cookbooks/firewall/libraries/helpers_windows.rb
|
582
|
-
- cookbooks/firewall/libraries/provider_firewall_firewalld.rb
|
583
|
-
- cookbooks/firewall/libraries/provider_firewall_iptables.rb
|
584
|
-
- cookbooks/firewall/libraries/provider_firewall_iptables_ubuntu.rb
|
585
|
-
- cookbooks/firewall/libraries/provider_firewall_iptables_ubuntu1404.rb
|
586
|
-
- cookbooks/firewall/libraries/provider_firewall_rule.rb
|
587
|
-
- cookbooks/firewall/libraries/provider_firewall_ufw.rb
|
588
|
-
- cookbooks/firewall/libraries/provider_firewall_windows.rb
|
589
|
-
- cookbooks/firewall/libraries/resource_firewall.rb
|
590
|
-
- cookbooks/firewall/libraries/resource_firewall_rule.rb
|
591
|
-
- cookbooks/firewall/metadata.json
|
592
|
-
- cookbooks/firewall/metadata.rb
|
593
|
-
- cookbooks/firewall/recipes/default.rb
|
594
|
-
- cookbooks/firewall/recipes/disable_firewall.rb
|
595
|
-
- cookbooks/firewall/recipes/firewalld.rb
|
596
|
-
- cookbooks/firewall/renovate.json
|
597
|
-
- cookbooks/firewall/resources/firewalld.rb
|
598
|
-
- cookbooks/firewall/resources/firewalld_config.rb
|
599
|
-
- cookbooks/firewall/resources/firewalld_helpers.rb
|
600
|
-
- cookbooks/firewall/resources/firewalld_icmptype.rb
|
601
|
-
- cookbooks/firewall/resources/firewalld_ipset.rb
|
602
|
-
- cookbooks/firewall/resources/firewalld_policy.rb
|
603
|
-
- cookbooks/firewall/resources/firewalld_service.rb
|
604
|
-
- cookbooks/firewall/resources/firewalld_zone.rb
|
605
|
-
- cookbooks/firewall/resources/nftables.rb
|
606
|
-
- cookbooks/firewall/resources/nftables_rule.rb
|
607
|
-
- cookbooks/firewall/templates/default/ufw/default.erb
|
608
565
|
- cookbooks/mu-activedirectory/Berksfile
|
609
566
|
- cookbooks/mu-activedirectory/CHANGELOG.md
|
610
567
|
- cookbooks/mu-activedirectory/LICENSE
|
@@ -668,6 +625,27 @@ files:
|
|
668
625
|
- cookbooks/mu-master/README.md
|
669
626
|
- cookbooks/mu-master/attributes/default.rb
|
670
627
|
- cookbooks/mu-master/files/default/0-mu-log-server.conf
|
628
|
+
- cookbooks/mu-master/files/default/389ds-perl/ASDialogs.pm
|
629
|
+
- cookbooks/mu-master/files/default/389ds-perl/AdminMigration.pm
|
630
|
+
- cookbooks/mu-master/files/default/389ds-perl/AdminServer.pm
|
631
|
+
- cookbooks/mu-master/files/default/389ds-perl/AdminUtil.pm
|
632
|
+
- cookbooks/mu-master/files/default/389ds-perl/ConfigDSDialogs.pm
|
633
|
+
- cookbooks/mu-master/files/default/389ds-perl/DSCreate.pm
|
634
|
+
- cookbooks/mu-master/files/default/389ds-perl/DSDialogs.pm
|
635
|
+
- cookbooks/mu-master/files/default/389ds-perl/DSMigration.pm
|
636
|
+
- cookbooks/mu-master/files/default/389ds-perl/DSUpdate.pm
|
637
|
+
- cookbooks/mu-master/files/default/389ds-perl/DSUpdateDialogs.pm
|
638
|
+
- cookbooks/mu-master/files/default/389ds-perl/DSUtil.pm
|
639
|
+
- cookbooks/mu-master/files/default/389ds-perl/Dialog.pm
|
640
|
+
- cookbooks/mu-master/files/default/389ds-perl/DialogManager.pm
|
641
|
+
- cookbooks/mu-master/files/default/389ds-perl/FileConn.pm
|
642
|
+
- cookbooks/mu-master/files/default/389ds-perl/Inf.pm
|
643
|
+
- cookbooks/mu-master/files/default/389ds-perl/Migration.pm
|
644
|
+
- cookbooks/mu-master/files/default/389ds-perl/RegDSDialogs.pm
|
645
|
+
- cookbooks/mu-master/files/default/389ds-perl/Resource.pm
|
646
|
+
- cookbooks/mu-master/files/default/389ds-perl/Setup.pm
|
647
|
+
- cookbooks/mu-master/files/default/389ds-perl/SetupDialogs.pm
|
648
|
+
- cookbooks/mu-master/files/default/389ds-perl/SetupLog.pm
|
671
649
|
- cookbooks/mu-master/files/default/addRSA.ldif
|
672
650
|
- cookbooks/mu-master/files/default/check_elastic.sh
|
673
651
|
- cookbooks/mu-master/files/default/check_kibana.rb
|
@@ -680,6 +658,7 @@ files:
|
|
680
658
|
- cookbooks/mu-master/files/default/nagios_selinux_7.pp
|
681
659
|
- cookbooks/mu-master/files/default/nagios_selinux_7.te
|
682
660
|
- cookbooks/mu-master/files/default/pam_sshd
|
661
|
+
- cookbooks/mu-master/files/default/setCertName.ldif
|
683
662
|
- cookbooks/mu-master/files/default/ssl_enable.ldif
|
684
663
|
- cookbooks/mu-master/files/default/syslogd_oddjobd.pp
|
685
664
|
- cookbooks/mu-master/files/default/syslogd_oddjobd.te
|
@@ -802,6 +781,7 @@ files:
|
|
802
781
|
- cookbooks/mu-tools/files/centos/etc/security/limits.conf
|
803
782
|
- cookbooks/mu-tools/files/centos/etc/sysconfig/init
|
804
783
|
- cookbooks/mu-tools/files/centos/etc/sysctl.conf
|
784
|
+
- cookbooks/mu-tools/files/default/Mu_CA.pem
|
805
785
|
- cookbooks/mu-tools/files/default/PSWindowsUpdate.zip
|
806
786
|
- cookbooks/mu-tools/files/default/ebs_snapshots.py
|
807
787
|
- cookbooks/mu-tools/files/default/etc/BANNER
|
@@ -937,6 +917,75 @@ files:
|
|
937
917
|
- cookbooks/mu-utility/recipes/zip.rb
|
938
918
|
- cookbooks/mu-utility/templates/default/BundleConfig.xml.erb
|
939
919
|
- cookbooks/mu-utility/templates/default/config.xml.erb
|
920
|
+
- cookbooks/nagios/CHANGELOG.md
|
921
|
+
- cookbooks/nagios/LICENSE
|
922
|
+
- cookbooks/nagios/README.md
|
923
|
+
- cookbooks/nagios/attributes/config.rb
|
924
|
+
- cookbooks/nagios/attributes/default.rb
|
925
|
+
- cookbooks/nagios/chefignore
|
926
|
+
- cookbooks/nagios/libraries/base.rb
|
927
|
+
- cookbooks/nagios/libraries/command.rb
|
928
|
+
- cookbooks/nagios/libraries/contact.rb
|
929
|
+
- cookbooks/nagios/libraries/contactgroup.rb
|
930
|
+
- cookbooks/nagios/libraries/custom_option.rb
|
931
|
+
- cookbooks/nagios/libraries/data_bag_helper.rb
|
932
|
+
- cookbooks/nagios/libraries/default.rb
|
933
|
+
- cookbooks/nagios/libraries/helpers.rb
|
934
|
+
- cookbooks/nagios/libraries/host.rb
|
935
|
+
- cookbooks/nagios/libraries/hostdependency.rb
|
936
|
+
- cookbooks/nagios/libraries/hostescalation.rb
|
937
|
+
- cookbooks/nagios/libraries/hostgroup.rb
|
938
|
+
- cookbooks/nagios/libraries/nagios.rb
|
939
|
+
- cookbooks/nagios/libraries/resource.rb
|
940
|
+
- cookbooks/nagios/libraries/service.rb
|
941
|
+
- cookbooks/nagios/libraries/servicedependency.rb
|
942
|
+
- cookbooks/nagios/libraries/serviceescalation.rb
|
943
|
+
- cookbooks/nagios/libraries/servicegroup.rb
|
944
|
+
- cookbooks/nagios/libraries/timeperiod.rb
|
945
|
+
- cookbooks/nagios/libraries/users_helper.rb
|
946
|
+
- cookbooks/nagios/metadata.json
|
947
|
+
- cookbooks/nagios/metadata.rb
|
948
|
+
- cookbooks/nagios/recipes/_load_databag_config.rb
|
949
|
+
- cookbooks/nagios/recipes/_load_default_config.rb
|
950
|
+
- cookbooks/nagios/recipes/apache.rb
|
951
|
+
- cookbooks/nagios/recipes/default.rb
|
952
|
+
- cookbooks/nagios/recipes/nginx.rb
|
953
|
+
- cookbooks/nagios/recipes/pagerduty.rb
|
954
|
+
- cookbooks/nagios/recipes/server.rb
|
955
|
+
- cookbooks/nagios/recipes/server_package.rb
|
956
|
+
- cookbooks/nagios/recipes/server_source.rb
|
957
|
+
- cookbooks/nagios/renovate.json
|
958
|
+
- cookbooks/nagios/resources/command.rb
|
959
|
+
- cookbooks/nagios/resources/conf.rb
|
960
|
+
- cookbooks/nagios/resources/contact.rb
|
961
|
+
- cookbooks/nagios/resources/contactgroup.rb
|
962
|
+
- cookbooks/nagios/resources/host.rb
|
963
|
+
- cookbooks/nagios/resources/hostdependency.rb
|
964
|
+
- cookbooks/nagios/resources/hostescalation.rb
|
965
|
+
- cookbooks/nagios/resources/hostgroup.rb
|
966
|
+
- cookbooks/nagios/resources/resource.rb
|
967
|
+
- cookbooks/nagios/resources/service.rb
|
968
|
+
- cookbooks/nagios/resources/servicedependency.rb
|
969
|
+
- cookbooks/nagios/resources/serviceescalation.rb
|
970
|
+
- cookbooks/nagios/resources/servicegroup.rb
|
971
|
+
- cookbooks/nagios/resources/timeperiod.rb
|
972
|
+
- cookbooks/nagios/templates/apache2.conf.erb
|
973
|
+
- cookbooks/nagios/templates/cgi.cfg.erb
|
974
|
+
- cookbooks/nagios/templates/commands.cfg.erb
|
975
|
+
- cookbooks/nagios/templates/contacts.cfg.erb
|
976
|
+
- cookbooks/nagios/templates/hostgroups.cfg.erb
|
977
|
+
- cookbooks/nagios/templates/hosts.cfg.erb
|
978
|
+
- cookbooks/nagios/templates/htpasswd.users.erb
|
979
|
+
- cookbooks/nagios/templates/nagios.cfg.erb
|
980
|
+
- cookbooks/nagios/templates/nginx.conf.erb
|
981
|
+
- cookbooks/nagios/templates/pagerduty.cgi.erb
|
982
|
+
- cookbooks/nagios/templates/resource.cfg.erb
|
983
|
+
- cookbooks/nagios/templates/servicedependencies.cfg.erb
|
984
|
+
- cookbooks/nagios/templates/servicegroups.cfg.erb
|
985
|
+
- cookbooks/nagios/templates/services.cfg.erb
|
986
|
+
- cookbooks/nagios/templates/spawn-fcgi.erb
|
987
|
+
- cookbooks/nagios/templates/templates.cfg.erb
|
988
|
+
- cookbooks/nagios/templates/timeperiods.cfg.erb
|
940
989
|
- cookbooks/s3fs/Berksfile
|
941
990
|
- cookbooks/s3fs/CHANGELOG.md
|
942
991
|
- cookbooks/s3fs/LICENSE
|
@@ -1088,6 +1137,7 @@ files:
|
|
1088
1137
|
- modules/mu/groomers/README.md
|
1089
1138
|
- modules/mu/groomers/ansible.rb
|
1090
1139
|
- modules/mu/groomers/chef.rb
|
1140
|
+
- modules/mu/kittens.rb
|
1091
1141
|
- modules/mu/logger.rb
|
1092
1142
|
- modules/mu/master.rb
|
1093
1143
|
- modules/mu/master/README.md
|
@@ -1100,6 +1150,7 @@ files:
|
|
1100
1150
|
- modules/mu/mommacat/search.rb
|
1101
1151
|
- modules/mu/mommacat/storage.rb
|
1102
1152
|
- modules/mu/monkey_patches/chef_knife_ssh.rb
|
1153
|
+
- modules/mu/mu.yaml.rb
|
1103
1154
|
- modules/mu/providers/README.md
|
1104
1155
|
- modules/mu/providers/aws.rb
|
1105
1156
|
- modules/mu/providers/aws/alarm.rb
|
@@ -1288,7 +1339,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1288
1339
|
- !ruby/object:Gem::Version
|
1289
1340
|
version: '0'
|
1290
1341
|
requirements: []
|
1291
|
-
rubygems_version: 3.
|
1342
|
+
rubygems_version: 3.5.16
|
1292
1343
|
signing_key:
|
1293
1344
|
specification_version: 4
|
1294
1345
|
summary: The eGTLabs Mu toolkit for unified cloud deployments
|