Files
webmin/grub2/backup_config.pl
Ilia Ross 523d68c67a Add GRUB 2 boot loader module
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.
2026-05-28 02:20:53 +02:00

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;