mirror of
https://github.com/webmin/webmin.git
synced 2026-06-10 06:40:32 +01:00
Adds a Webmin GRUB 2 module for inspecting boot entries, editing defaults, custom entries, themes, password protection, BLS-aware kernel options, safe menu regeneration, boot loader installation, manual config editing, status reporting, ACLs, backups, logging, and tests.
14 lines
195 B
Perl
14 lines
195 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
do 'grub2-lib.pl';
|
|
|
|
# backup_config_files()
|
|
# Returns GRUB 2 files and directories that can be backed up.
|
|
sub backup_config_files
|
|
{
|
|
return &grub2_config_files();
|
|
}
|
|
|
|
1;
|