Version information
This version is compatible with:
- Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x
- Puppet >=5.0.0 <7.0.0
- RedHat, Debian, Ubuntu, CentOS, Gentoo, SLES, Archlinux
Start using this module
Add this module to your Puppetfile:
mod 'goldyfruit-grub2', '1.0.17'
Learn more about managing modules with a PuppetfileDocumentation
puppet-grub2
This module manages GRUB 2 bootloader (Hiera & EFI)
Supported distributions
- Ubuntu
- Debian
- Red Hat
- CentOS
- Gentoo
- SLES / OpenSuse
- Arch Linux
Setup requirements
This module has the following dependencies:
Parameters
background_image
- Specify a path to a background image
- STRING : Empty by default
badram
- Define some memory addresses for BadRAM filtering
- STRING : Empty by default
config_template
- Template used for GRUB config file
- STRING : 'grub2/default_grub.erb'
cmdline_linux
- Arguments passed to the kernel
- STRING : Empty by default
cmdline_linux_default
- Arguments passed to the kernel
- STRING : 'quiet'
cmdline_linux_recovery
- Arguments passed to the kernel
- STRING : Empty by default
cmdline_xen
- Arguments passed to Xen
- STRING : Empty by default
default_entry
- Define on which kernel the system will boot
- STRING : '0'
device_install
- Define on which hard drive the MBR will be write
- ARRAY : Empty by default
disable_uuid
- Define if GRUB should use the UUID in the root= path
- BOOL : false
disable_os_prober
- Define if GRUB should add the results of os-prober to the menu
- BOOL : false
disable_recovery
- Define if GRUB should display the recovery entry in the menu
- BOOL : false
disable_submenu
- Define if GRUB should display the submenu
- BOOL : false
enable_cryptodisk
- Define if GRUB should check for encrypted disks and generate additional commands needed to access them during boot
- BOOL : false
enable_blscfg
- Define if BootLoaderSpec configuration should be used
- BOOL : false
gfxmode
- Define which resolution should be used if VBE is used
- STRING : Empty by default
hidden_timeout
- Define how long (in seconds) grub should wait for a user to enter the menu
- STRING : Not present in config file by default
hidden_timeout_quiet
- Define if the hidden timeout is quiet or not
- BOOL : false
install_binary
- Path to GRUB installation command
- ABSOLUTE_PATH : Value depends on Linux distribution
update_binary
- Path to GRUB configuration file update command
- ABSOLUTE_PATH : Value depends on Linux distribution
install_grub
- Install the GRUB packages and install GRUB in the MBR
- BOOL : false
package_ensure
- Puppet stuff, define in which state should be the GRUB packages
- STRING : 'present'
password
- Enable password to protect the GRUB configuration
- BOOL : false
password_username
- Set the username that will be able to edit the GRUB configuration
- STRING : Empty by default
password_pbkdf2_hash
- Set PBKDF2 password hash generated via grub-mkpasswd-pbkdf2 or grub2-mkpasswd-pbkdf2 commands
- STRING : Empty by default
preload_modules
- Preload additional modules
- STRING : Empty by default
recordfail_timeout
- Set default timeout value for GRUB2. Useful to stop headless machines stalling during boot.
- INTEGER : 5
save_default
- If true, the last selected entry will become the new default one GRUB_DEFAULT should be set to "saved" and not to 0
- BOOL : false
serial_command
- Set settings for the serial console
- STRING : Empty by default
suse_btrfs_snapshot_booting
- Whether the root disk is a btrfs snapshot or not
- BOOL : false
terminal
- Define on which terminal the ouput should be display
- STRING : Empty by default
timeout
- Define how long (in seconds) that the menu should appear
- INTEGER : 5
timeout_style
- Define what to display while waiting for timeout to expire
- STRING : 'countdown'
tune
- Define if GRUB should make a beep when he starts
- STRING : Empty by default
update_grub
- Regenerate the GRUB configuration after updates
- BOOL : true
Example
class { 'grub2':
update_grub => false,
install_grub => false,
cmdline_linux_default => 'quiet crashkernel=256M nmi_watchdog=0 console=tty0 console=ttyS1,115200n8',
terminal => 'serial console',
default_entry => 0,
timeout => 5,
serial_command => 'serial --speed=115200 --unit=1 --word=8 --parity=no --stop=1',
disable_uuid => true,
disable_recovery => true,
tune => '480 440 1',
device_install => ['/dev/sda'],
hidden_timeout => 0,
hidden_timeout_quiet => false,
recordfail_timeout => 5,
password => true,
password_username => 'chewbacca',
password_pbkdf2_hash => 'grub.pbkdf2.sha512.10000.EDBE1B820072D36A7B0059C7C33A2AA8B9D60888B0A44E7A566CB92E35F16A0F20770E79FB2E283680715ED916498D59B72F02599B461E4A087704E5E8A2A92D.911F2E7867A16DE76C170AD6E1C14D3F0AE2B7E1B58D1D967F98CEC9F2C2EAF7397ADE15CFB661CA94F6B7963A9C98BEFFB3026A4285FC04DB9F4118BDA39D58',
}
Hiera support
This module also supports the configuration of the parameters it exposes
using Hiera. You can do this by namespacing around grub2
. For instance, to
set the value of timeout
to 10
, you would use something like that in
your Hiera files:
grub2::timeout: 10
EFI support
Module will now take into account whether a system has booted with BIOS or with (U)EFI
and will then place the grub.cfg
file in the correct directory.
The efi
fact represents whether a system has booted with EFI or BIOS and returns a boolean; true
or false
depending on the system.
2024-04-08 support puppet8 - @vicinus - 1.0.17
2023-08-27 Improve Forge quality score - @goldyfruit - 1.0.16
2023-08-27 List deps in README.md - @weastur - 1.0.15 Don't use legacy facts - @pschichtel
2022-09-21 Check the GitHub release to get the changes for the next releases
2021-15-03 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 1.0.10 Gurbmeister <@Gurbmeister>
- Add EFI support
- Fix binary names
2021-06-01 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 1.0.9 Steffen Zieger github@saz.sh Adrian Eib adrian.eib@showmax.com Benedikt Braunger b.braunger@syseleven.de
- Update stdlib dependency to include versions up to 6.0.0
- Remove deprecated functions from Stdlib and use Puppet data types
- Added GRUB blscfg option
- Change package_name_legacy to optional
- Support Puppet 6
- Fix CI (Rubocop, Travis)
2018-01-09 Matthias Baur - baurmatt m.baur@syseleven.de 1.0.8 Marc Rumo marc.rumo@kudelskisecurity.com wkr wkr@netzmarkt.de
- update_binary not called when only password related parameter changes
- Allow empty cmdline_linux_default
- Fix module for non-password setups
- New parameter GRUB_PRELOAD_MODULES adde
2017-23-05 Florian Klink - flokli flokli@flokli.de 1.0.7 Theo Chatzimichos - tampakrap tampakrap@gmail.com Michael Hanselmann - hansmi public@hansmi.ch Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com
- Add the SUSE_BTRFS_SNAPSHOT_BOOTING option
- Add support for encrypted volumes
- Install GRUB only when there is a package change
- Add the possibility to remove grub-legacy package
- Make Travis works with Puppet 4.x
2017-14-03 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 1.0.6
- Puppet 3.x is now deprecated, this module requires Puppet 4.x
2017-06-02 Sebastien Badia - sbadia https://keybase.io/sbadia 1.0.5
- device_install is now an array of devices in order to support more than one device.
2016-20-09 Phillip Schichtel - pschichtel phillip.contact@schich.tel 1.0.4 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com
- Add support for Arch Linux (thanks pschichtel)
- Fix issue related to password:
- Improve Travis and Rake support
- Jump to 1.0.4 version because I did a mistake with 1.0.3 version
2016-17-06 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 1.0.2
- Add username and PBKDF2 password support
- Fix some typos:
- init.pp
- params.pp
- README.md
2016-01-04 Remigiusz Świc - ex3cv remigiusz@swic.net.pl 1.0.1
- Fix the validation:
- Hidden_timeout_quiet is a boolean
- Install_binary is an absolute path
- Update_binary is an absolute path
- Default value fix of "hidden_timeout_quiet" to false as undef is
- Documentation update around changes made in the module
2015-11-24 Theo Chatzimichos - tampakrap tampakrap@gmail.com 1.0.0 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com
- Fix the validation for save_default value
- Add missing comment about background_image option
- Module pass from 0.0.x version to 1.0.x version
2015-11-22 Theo Chatzimichos - tampakrap tampakrap@gmail.com 0.0.8 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com
- Add support for SLES / Suse distribution
- Add GRUB_CMDLINE_LINUX_RECOVERY option
- Add GRUB_DISABLE_OS_PROBER option
- Add GRUB_SAVEDEFAULT option
- Add GRUB_BACKGROUND option
2015-11-16 Steffen Zieger - saz github@saz.sh 0.0.7 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com
- Add support for Gentoo distribution
- Update the Readme
2015-10-06 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 0.0.6
- Fix default value for recordfail_timeout
2015-10-06 Andrew Langhorn - ajlanghorn andrew@ajlanghorn.com 0.0.5 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com Teran McKinney sega01@go-beyond.org
- Add GRUB_RECORDFAIL_TIMEOUT options
- Add GRUB_CMDLINE_XEN options
- Update metadata.json about the minimum stdlib version
- Update documentation about Hiera usage and GRUB_RECORDFAIL_TIMEOUT example
2015-10-05 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 0.0.4
- This version fix an issue on the Puppet Forge, the module is not download as the lastest version
2015-08-05 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 0.0.3
- Add GRUB_HIDDEN_TIMEOUT and GRUB_HIDDEN_TIMEOUT_QUIET options
- Replace Puppet Modulefile by metadata.json
- Make Puppet module compliant with Lint, Parser and Travis
2015-08-05 Gaëtan Trellu - goldyfruit gaetan.trellu@incloudus.com 0.0.2
- Redhat distribution are now supported
- Replace static distributor value by a dynamic value
- Add GRUB_DISABLE_SUBMENU option
- Fix update_grub always triggered issue: https://github.com/goldyfruit/puppet-grub2/issues/5
- Fix some typos and make it compliant with puppet-lint
2014-03-03 Gaetan Trellu - goldyfruit gaetan.trellu@incloudus.com 0.0.1
- Initial Commit
Dependencies
- puppetlabs/stdlib (>=4.6.0 <9.0.0)
- jcpunk-efi (>=0.1.0 <1.0.0)
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.