Skip to content

Commit

Permalink
Participate in Webmin config backup webmin/webmin#2106
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Mar 16, 2024
1 parent 7e6f4f9 commit 7a8c1c6
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions backup_config.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@

require 'virtualmin-nginx-lib.pl';

# backup_config_files()
# Returns files and directories that can be backed up
sub backup_config_files
{
local @rv;
push(@rv, &get_all_config_files());
return &unique(@rv);
}

# pre_backup(&files)
# Called before the files are actually read
sub pre_backup
{
return undef;
}

# post_backup(&files)
# Called after the files are actually read
sub post_backup
{
return undef;
}

# pre_restore(&files)
# Called before the files are restored from a backup
sub pre_restore
{
return undef;
}

# post_restore(&files)
# Called after the files are restored from a backup
sub post_restore
{
if (&is_nginx_running()) {
return &apply_nginx();
}
return undef;
}

1;

0 comments on commit 7a8c1c6

Please sign in to comment.