Skip to content

Commit 62e6449

Browse files
committed
Merge remote-tracking branch 'origin/develop' into 2558-two-factor-authentication
2 parents c2c0427 + c65925b commit 62e6449

35 files changed

+332
-95
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

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: 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/debian100.conf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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
?>

install/dist/conf/debian60.conf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,4 +232,7 @@
232232
$conf['xmpp']['init_script'] = 'metronome';
233233

234234

235+
// AppArmor
236+
$conf['apparmor']['installed'] = false;
237+
235238
?>

0 commit comments

Comments
 (0)