-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UPDATE: Kitchen.yml typo UPDATE: Libraries::Helper to enhance prerequisites versions UPDATE: Libraries::Helper to include support to ignore_errors in validate_cmd method when called from method find_current_veeam_version UPDATE: Libraries::Helper to include version information for explorers and win_clean_path helper UPDATE: Libraries::Helper to include links for 9.5.4 UPDATE: Recipes::Catalog to include calling veeam_upgrade by default UPDATE: Recipes::Console to include veaam_upgrade UPDATE: Recipes::HostMgmt to support 9.5.4 ADD: Recipes::Prerequisites UPDATE: Recipes::ProxyServer to support 9.5.4 UPDATE: Recipes::Server to support 9.5.4 UPDATE: Recipes::ServerWithConsole to include upgrades and build version handling UPDATE: Recipes::StandaloneComplete to support 9.5.4 UPDATE: Resources to use win_clean_path instead of win_friendly_path from Windows Cookbook UPDATE: Resources::Catalog to handle installation of 9.5.4 media and upgrades of the current version from 9.5.0 to 9.5.4 when version is selected UPDATE: Resources::Console to support upgrading and installing 9.5.4 UPDATE: Resources::Explorer to support 9.5.4 version upgrades UPDATE: Resources::Prerequisites to support new version of SQL Express installation based on the build_version UPDATE: Resources::Server to enable support for upgrading the version to 9.5.4 UPDATE: Resources::Upgrade to initiate an upgrade when the Veeam Backup Catalog version does not match the requested build version UPDATE: Templates::SqlBuildScript to handle installation of SQL Express 2016 when performing a new installation of 9.5 Update 4 ADD: Test::Inspec/9.5.4 UPDATE: README BUMP: Metadata to Version 3.0.0
- Loading branch information
Showing
50 changed files
with
471 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,6 @@ bin/* | |
|
||
.kitchen/ | ||
.kitchen.local.yml | ||
.kitchen.local.*.yml | ||
|
||
.delivery/cli.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Cookbook Name:: veeam | ||
# Recipe:: prerequisites | ||
# | ||
# Copyright (c) 2017 Exosphere Data LLC, All Rights Reserved. | ||
|
||
error_message = 'This recipe requires a Windows 2012 or higher host!' | ||
|
||
# If this host is not Windows, then abort | ||
raise ArgumentError, error_message unless node['platform'] == 'windows' | ||
|
||
# If this host is older than Windows 2012, we should abort the process for an unsupported platform | ||
raise ArgumentError, error_message if node['platform_version'].to_f < '6.2.9200'.to_f # '6.2.9200' is the numeric platform_version for Windows 2012 | ||
|
||
veeam_prerequisites 'Install Veeam Prerequisites' do | ||
package_url node['veeam']['installer']['package_url'] | ||
package_checksum node['veeam']['installer']['package_checksum'] | ||
version node['veeam']['build'] | ||
install_sql true | ||
action :install | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.