Skip to content

Commit 7190266

Browse files
committed
Merge remote-tracking branch 'origin/develop' into 6230-patch-copy-to-clipboard
2 parents 4a9f875 + 221728d commit 7190266

File tree

542 files changed

+7100
-3339
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

542 files changed

+7100
-3339
lines changed

.gitignore

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
1-
.DS_Store
21
.idea
32
/nbproject/private/
43
.phplint-cache
54
*.swp
5+
6+
# macOS-specific things to exclude
7+
8+
# General
9+
.DS_Store
10+
.AppleDouble
11+
.LSOverride
12+
13+
# Icon must end with two \r
14+
Icon
15+
16+
17+
Icon?
18+
19+
# Thumbnails
20+
._*
21+
22+
# Files that might appear in the root of a volume
23+
.DocumentRevisions-V100
24+
.fseventsd
25+
.Spotlight-V100
26+
.TemporaryItems
27+
.Trashes
28+
.VolumeIcon.icns
29+
.com.apple.timemachine.donotpresent
30+
31+
# Directories potentially created on remote AFP share
32+
.AppleDB
33+
.AppleDesktop
34+
Network Trash Folder
35+
Temporary Items
36+
.apdisk
37+
38+
# Configuration for the Nova editor
39+
.nova

docs/autoinstall_samples/autoinstall.conf_sample.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
/* optional expert mode settings, needed only for expert mode */
3131
$autoinstall['mysql_ispconfig_user'] = 'ispconfig'; // default: ispconfig
32-
$autoinstall['mysql_ispconfig_password'] = md5(uniqid(rand()));
32+
$autoinstall['mysql_ispconfig_password'] = bin2hex(random_bytes(20));
3333
$autoinstall['join_multiserver_setup'] = 'n'; // y, n (default)
3434
$autoinstall['mysql_master_hostname'] = 'master.example.com';
3535
$autoinstall['mysql_master_root_user'] = 'root';
@@ -70,4 +70,4 @@
7070
$autoupdate['svc_detect_change_vserver_server'] = 'yes'; // yes (default), no
7171
$autoupdate['svc_detect_change_db_server'] = 'yes'; // yes (default), no
7272

73-
?>
73+
?>

install/dist/conf/centos52.conf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,7 @@
221221
//* OpenVZ
222222
$conf['openvz']['installed'] = false;
223223

224+
// AppArmor
225+
$conf['apparmor']['installed'] = false;
226+
224227
?>

install/dist/conf/centos53.conf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,7 @@
221221
//* OpenVZ
222222
$conf['openvz']['installed'] = false;
223223

224+
// AppArmor
225+
$conf['apparmor']['installed'] = false;
226+
224227
?>

install/dist/conf/centos70.conf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,7 @@
221221
//* OpenVZ
222222
$conf['openvz']['installed'] = false;
223223

224+
// AppArmor
225+
$conf['apparmor']['installed'] = false;
226+
224227
?>

install/dist/conf/centos72.conf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,7 @@
224224
//* OpenVZ
225225
$conf['openvz']['installed'] = false;
226226

227+
// AppArmor
228+
$conf['apparmor']['installed'] = false;
229+
227230
?>

install/dist/conf/centos80.conf.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@
6363
$conf['mysql']['admin_password'] = '';
6464
$conf['mysql']['charset'] = 'utf8';
6565
$conf['mysql']['ispconfig_user'] = 'ispconfig';
66-
$conf['mysql']['ispconfig_password'] = md5(uniqid(rand()));
66+
$conf['mysql']['ispconfig_password'] = md5(random_bytes(20));
6767
$conf['mysql']['master_slave_setup'] = 'n';
6868
$conf['mysql']['master_host'] = '';
6969
$conf['mysql']['master_database'] = 'dbispconfig';
7070
$conf['mysql']['master_admin_user'] = 'root';
7171
$conf['mysql']['master_admin_password'] = '';
7272
$conf['mysql']['master_ispconfig_user'] = '';
73-
$conf['mysql']['master_ispconfig_password'] = md5(uniqid(rand()));
73+
$conf['mysql']['master_ispconfig_password'] = md5(random_bytes(20));
7474

7575
//* Apache
7676
$conf['apache']['installed'] = false; // will be detected automatically during installation
@@ -224,4 +224,7 @@
224224
//* OpenVZ
225225
$conf['openvz']['installed'] = false;
226226

227+
// AppArmor
228+
$conf['apparmor']['installed'] = false;
229+
227230
?>

install/dist/conf/debian100.conf.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@
6565
$conf['mysql']['admin_password'] = '';
6666
$conf['mysql']['charset'] = 'utf8';
6767
$conf['mysql']['ispconfig_user'] = 'ispconfig';
68-
$conf['mysql']['ispconfig_password'] = md5(uniqid(rand()));
68+
$conf['mysql']['ispconfig_password'] = md5(random_bytes(20));
6969
$conf['mysql']['master_slave_setup'] = 'n';
7070
$conf['mysql']['master_host'] = '';
7171
$conf['mysql']['master_database'] = 'dbispconfig';
7272
$conf['mysql']['master_admin_user'] = 'root';
7373
$conf['mysql']['master_admin_password'] = '';
7474
$conf['mysql']['master_ispconfig_user'] = '';
75-
$conf['mysql']['master_ispconfig_password'] = md5(uniqid(rand()));
75+
$conf['mysql']['master_ispconfig_password'] = md5(random_bytes(20));
7676

7777
//* Apache
7878
$conf['apache']['installed'] = false; // will be detected automatically during installation
@@ -236,4 +236,7 @@
236236
$conf['xmpp']['init_script'] = 'metronome';
237237

238238

239+
// AppArmor
240+
$conf['apparmor']['installed'] = false;
241+
239242
?>

install/dist/conf/debian110.conf.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@
6565
$conf['mysql']['admin_password'] = '';
6666
$conf['mysql']['charset'] = 'utf8';
6767
$conf['mysql']['ispconfig_user'] = 'ispconfig';
68-
$conf['mysql']['ispconfig_password'] = md5(uniqid(rand()));
68+
$conf['mysql']['ispconfig_password'] = md5(random_bytes(20));
6969
$conf['mysql']['master_slave_setup'] = 'n';
7070
$conf['mysql']['master_host'] = '';
7171
$conf['mysql']['master_database'] = 'dbispconfig';
7272
$conf['mysql']['master_admin_user'] = 'root';
7373
$conf['mysql']['master_admin_password'] = '';
7474
$conf['mysql']['master_ispconfig_user'] = '';
75-
$conf['mysql']['master_ispconfig_password'] = md5(uniqid(rand()));
75+
$conf['mysql']['master_ispconfig_password'] = md5(random_bytes(20));
7676

7777
//* Apache
7878
$conf['apache']['installed'] = false; // will be detected automatically during installation
@@ -236,4 +236,7 @@
236236
$conf['xmpp']['init_script'] = 'metronome';
237237

238238

239+
// AppArmor
240+
$conf['apparmor']['installed'] = false;
241+
239242
?>

install/dist/conf/debian40.conf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,4 +229,7 @@
229229
$conf['openvz']['installed'] = false;
230230

231231

232+
// AppArmor
233+
$conf['apparmor']['installed'] = false;
234+
232235
?>

0 commit comments

Comments
 (0)