cookbook 'package-replace', '~> 0.2.2'
package-replace (4) Versions 0.2.2 Follow0
Upgrades packages where an upgrade path is not clear
cookbook 'package-replace', '~> 0.2.2', :supermarket
knife supermarket install package-replace
knife supermarket download package-replace
package-replace Cookbook
Replaces an older package with a newer package, where they would conflict if installed side by side.
Some packages such as php55 do not upgrade cleanly to php56 versions of packages due to them
not being marked as replacements in the package management system.
Warnings - Before you use this cookbook
Thought should be given to what packages are going to be replaced and their replacement(s).
For example, an upgrade of MySQL/MariaDB/Percona server packages could mean data loss. This is due to needing to run
mysql_upgrade
after the package has been replaced.
So, take precautions and back up your data immediately prior to upgrading the packages!
Better yet, start from a new server and import the data from a recent database dump, instead of risking an upgrade.
If upgrading a "safer" set of packages, say "php55" to "php56", it's possible that the replacement
will miss some packages that were previously installed but are not any longer.
Ensure you test out an upgrade elsewhere, such as in test-kitchen or a pipeline server, before performing the upgrade on
production.
Do some checks before and after chef runs the upgrade, for instance:
rpm -qa | grep php | sort -n > before.txt
# run chef
rpm -qa | grep php | sort -n > after.txt
diff before.txt after.txt
It's also possible that the act of replacing a package will disable any associated services, so the usage of this
cookbook (whether by LWRP in your own cookbook, or the default recipe being included in the runlist) should be
fairly high up the runlist order.
Especially before the usual cookbook that installs these services/packages ("recipe[php]" or "recipe[mysql]",
for example) as the cookbooks will ensure the right services get set to start at boot.
How to use this cookbook
There are two methods of using this cookbook:
- The
package_replace_replacement
LWRP can be used from your own cookbooks. - Provide the correct configuration to the
default
recipe.
Either approach can make use of two methods:
- Use of yum-plugin-replace to replace a package where they both share the same base name - strategy
yum_replace
. - Use of yum shell to replace a package with another in the same yum transaction - strategy
yum_shell
. Yum shell is less intelligent with regards to dependencies, so you will need to specify all replacement packages to install.
Replacing a package with yum-plugin-replace
Let's try to replace the current version of php that is installed with PHP 5.6 from Webtatic (where yum-webtatic is in the runlist already):
Using the LWRP
package_replace_via_plugin 'php' do from_packages [ 'php-common', 'php54-common', 'php54u-common', 'php54w-common', 'php55-common', 'php55u-common', 'php55w-common' ] to_package 'php56w-common' notifications { 'service[php-fpm]' => 'restart' } action :install end
Using the default recipe
Provide the following configuration and use package-replace::default
:
{ "php": { "replace_packages": [ "php-common", "php54-common", "php54w-common", "php54u-common", "php55-common", "php55w-common", "php55u-common" ], "replace_package_target": "php56w-common" }, "package_replacements": { "php": { "enabled": true, "from": "replace_packages", "strategy": "yum_replace", "notifications": { "service[php-fpm]": "restart" }, "to": "replace_package_target" } } }
Replacing a package with yum shell
Let's try to replace the current version of mysql-libs that is installed with MySQL 5.5 from Webtatic (where yum-webtatic is in the runlist already):
Using the LWRP
package_replace_via_shell 'mysql-libs' do from_packages [ 'mysql-libs' ] to_packages [ 'mysql55w-libs', 'libmysqlclient16' ] notifications { 'service[mysqld]' => 'restart' } action :install end
Using the default recipe
Provide the following configuration and use package-replace::default
:
{ "mysql-libs": { "replace_packages": [ "mysql-libs" ], "replace_package_targets": [ "mysql55w-libs", "libmysqlclient16" ] }, "package_replacements": { "mysql-libs": { "enabled": true, "strategy": "yum_shell", "from": "replace_packages", "to": "replace_package_targets", "notifications": { "service[mysqld]": "restart" } } } }
Replacing a package with uninstall/install
Let's try to replace the current version of php that is installed with PHP 5.6 from Webtatic (where yum-webtatic is in the runlist already):
Using the LWRP
package_replace_via_uninstall_install 'php' do from_packages [ 'php-common', 'php54-common', 'php54u-common', 'php54w-common', 'php55-common', 'php55u-common', 'php55w-common' ] to_packages [ 'php56w', 'php56w-bcmath', 'php56w-cli', 'php56w-common', 'php56w-devel', 'php56w-fpm', 'php56w-gd', 'php56w-mbstring', 'php56w-mcrypt', 'php56w-mysqlnd', 'php56w-opcache', 'php56w-pdo', 'php56w-pear', 'php56w-pecl-apcu', 'php56w-pecl-igbinary', 'php56w-pecl-imagick', 'php56w-pecl-memcache', 'php56w-pecl-redis', 'php56w-process', 'php56w-soap', 'php56w-xml', 'php56w-xmlrpc' ] notifications { 'service[php-fpm]' => 'restart' } action :install end
Using the default recipe
Provide the following configuration and use package-replace::default
:
{ "php": { "replace_packages": [ "php-common", "php54-common", "php54w-common", "php54u-common", "php55-common", "php55w-common", "php55u-common" ], "replace_package_targets": [ "php56w", "php56w-bcmath", "php56w-cli", "php56w-common", "php56w-devel", "php56w-fpm", "php56w-gd", "php56w-mbstring", "php56w-mcrypt", "php56w-mysqlnd", "php56w-opcache", "php56w-pdo", "php56w-pear", "php56w-pecl-apcu", "php56w-pecl-igbinary", "php56w-pecl-imagick", "php56w-pecl-memcache", "php56w-pecl-redis", "php56w-process", "php56w-soap", "php56w-xml", "php56w-xmlrpc" ] }, "package_replacements": { "php": { "enabled": true, "from": "replace_packages", "strategy": "uninstall_install", "notifications": { "service[php-fpm]": "restart" }, "to": "replace_package_targets" } } }
LWRPs
package_replace_via_plugin
Attributes:
<table>
<thead>
<tr>
<th>Attribute</th>
<th>Description</th>
<th>Example</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr>
<td>type</td>
<td>Name of the replacement operation</td>
<td><tt>php</tt></td>
<td><tt></tt></td>
</tr>
<tr>
<td>from_packages</td>
<td>Array of package names to replace if present</td>
<td><tt>['test', 'test2']</tt></td>
<td><tt>[]</tt></td>
</tr>
<tr>
<td>to_package</td>
<td>The single package name to replace a matched package with</td>
<td><tt>test3</tt></td>
<td><tt></tt></td>
</tr>
<tr>
<td>notifications</td>
<td>Hash of chef resource IDs to action to take. Multiple entries allowed</td>
<td><tt>{"service[test]": "restart"}</tt></td>
<td><tt>{}</tt></td>
</tr>
</tbody>
</table>
package_replace_via_shell
Attributes:
<table>
<thead>
<tr>
<th>Attribute</th>
<th>Description</th>
<th>Example</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr>
<td>type</td>
<td>Name of the replacement operation</td>
<td><tt>php</tt></td>
<td><tt></tt></td>
</tr>
<tr>
<td>from_packages</td>
<td>Array of package names to replace if present</td>
<td><tt>['test', 'test2']</tt></td>
<td><tt>[]</tt></td>
</tr>
<tr>
<td>to_packages</td>
<td>Potentially multiple package names to replace a matched package with</td>
<td><tt>['test3', 'test4']</tt></td>
<td><tt>[]</tt></td>
</tr>
<tr>
<td>notifications</td>
<td>Hash of chef resource IDs to action to take. Multiple entries allowed</td>
<td><tt>{"service[test]": "restart"}</tt></td>
<td><tt>{}</tt></td>
</tr>
</tbody>
</table>
package_replace_via_uninstall_install
Attributes:
<table>
<thead>
<tr>
<th>Attribute</th>
<th>Description</th>
<th>Example</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr>
<td>type</td>
<td>Name of the replacement operation</td>
<td><tt>php</tt></td>
<td><tt></tt></td>
</tr>
<tr>
<td>from_packages</td>
<td>Array of package names to replace if present</td>
<td><tt>['test', 'test2']</tt></td>
<td><tt>[]</tt></td>
</tr>
<tr>
<td>to_packages</td>
<td>Potentially multiple package names to replace a matched package with</td>
<td><tt>['test3', 'test4']</tt></td>
<td><tt>[]</tt></td>
</tr>
<tr>
<td>notifications</td>
<td>Hash of chef resource IDs to action to take. Multiple entries allowed</td>
<td><tt>{"service[test]": "restart"}</tt></td>
<td><tt>{}</tt></td>
</tr>
</tbody>
</table>
Contributing
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write you change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
Testing
We use the following testing tools on this project, which can be installed by running bundle install
.
These will all run when you perform bundle exec rake test
, however if you wish to know how to run them individually,
they are listed below.
- RSpec/ChefSpec for spec style TDD:
bundle exec rspec
- Test Kitchen for TDD and testing out individual recipes on a test Virtual Machine:
bundle exec kitchen test
- Foodcritic to catch Chef specific style/correctness errors:
bundle exec foodcritic . -f any -C
- Rubocop to catch Ruby style "offenses":
bundle exec rubocop
Supermarket share
stove is used to create git tags and
publish the cookbook on supermarket.chef.io.
To tag/publish you need to be a contributor to the cookbook on Supermarket and
run:
$ stove login --username --key ~/.chef/.pem
$ rake publish
It will take the version defined in metadata.rb, create a tag, and push the
cookbook to https://supermarket.chef.io/cookbooks/package-replace
License and Authors
- Author:: Kieren Evans
- Author:: Andy Thompson
Copyright:: 2016 Inviqa UK LTD See LICENSE file
Dependent cookbooks
yum-webtatic >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
0.2.2 (15 October 2018)
FEATURES
- Fix uninstall_install strategy in default recipe
0.2.1 (15 October 2018)
FEATURES
- Support uninstall_install strategy in default recipe
0.2.0 (15 October 2018)
FEATURES
- Support uninstall_install strategy
0.1.0 (13 June 2016)
FEATURES
- Initial release of package-replace
Collaborator Number Metric
0.2.2 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.2.2 passed this metric
No Binaries Metric
0.2.2 passed this metric
Testing File Metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.2.2 failed this metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.2.2 passed this metric
No Binaries Metric
0.2.2 passed this metric
Testing File Metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.2.2 passed this metric
0.2.2 passed this metric
Testing File Metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.2.2 failed this metric
0.2.2 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number