Skip to content

Commit a85a4a9

Browse files
committed
Fixes #6713 Remove rar compression format in backup options
1 parent 0dad50b commit a85a4a9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
INSERT IGNORE INTO `dns_ssl_ca` (`id`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `active`, `ca_name`, `ca_issue`, `ca_wildcard`, `ca_iodef`, `ca_critical`) VALUES
22
(NULL, 1, 1, 'riud', 'riud', '', 'Y', 'Amazon Trust Services', 'amazontrust.com', 'Y', '', 0);
33
ALTER TABLE `web_domain` ADD `disable_symlinknotowner` enum('n','y') NOT NULL default 'n' AFTER `last_jailkit_hash`;
4+
UPDATE `web_domain` SET `backup_format_web` = 'tar_gzip' WHERE `backup_format_web` = 'rar';
5+
UPDATE `web_domain` SET `backup_format_db` = 'zip' WHERE `backup_format_db` = 'rar';

interface/web/sites/form/web_vhost_domain.tform.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,6 @@
682682
'xz',
683683
'unxz',
684684
'7z',
685-
'rar',
686685
);
687686
foreach ($compressors_list as $compressor) {
688687
if (!$app->system->is_installed($compressor)) {
@@ -740,7 +739,6 @@
740739
'tar_7z_lzma' => 'backup_format_tar_7z_lzma_txt',
741740
'tar_7z_ppmd' => 'backup_format_tar_7z_ppmd_txt',
742741
'tar_7z_bzip2' => 'backup_format_tar_7z_bzip2_txt',
743-
'rar' => 'backup_format_rar_txt',
744742
)
745743
),
746744
'backup_format_db' => array (
@@ -757,7 +755,6 @@
757755
'7z_lzma' => 'backup_format_7z_lzma_txt',
758756
'7z_ppmd' => 'backup_format_7z_ppmd_txt',
759757
'7z_bzip2' => 'backup_format_7z_bzip2_txt',
760-
'rar' => 'backup_format_rar_txt',
761758
)
762759
),
763760
'backup_encrypt' => array (

0 commit comments

Comments
 (0)