blob: 8e041e155385f6b9f77954b12a8c0530af2a1a6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
post_install() {
serverDir=/etc/connective-http
classPathFolders=( "libs/" )
mainType=org.asf.connective.standalone.main.ConnectiveStandalone
credtoolLibs=()
credtoolTarget=""
jvmArguments="-Djava.net.preferIPv4Stack=true"
if [ -f "/etc/connective-http/config.props" ]; then
source "/etc/connective-http/config.props"
fi
mkdir "$serverDir/modules" -p
chown connective:connective "$serverDir/modules" -R
ln -sf "/usr/lib/connective-php/ConnectivePHP.jar" "$serverDir/modules/ConnectivePHP.jar"
chown connective "$serverDir/modules/ConnectivePHP.jar"
if [ -f "$serverDir"/server.ccfg ] && cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg .context.root &>/dev/null; then
phpsupportcode='
# PHP Support Block (Auto-generated, avoid manual removal)
extension "class:org.asf.connective.php.providers.PhpExtensionProvider"
uploadhandler "class:org.asf.connective.php.providers.PhpUploadHandler"'
rootcontextblock="$(cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg .context.root --viewmode | sed "0,/^..*/s||&\n${phpsupportcode//$'\n'/\\n}|" ; echo .)"
rootcontextblock=${rootcontextblock:0:-2}
cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg .context.root &>/dev/null && cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg . -s .context.root "$rootcontextblock" --ccfg-output --output "$serverDir"/server.ccfg
fi
}
post_upgrade() {
serverDir=/etc/connective-http
classPathFolders=( "libs/" )
mainType=org.asf.connective.standalone.main.ConnectiveStandalone
credtoolLibs=()
credtoolTarget=""
jvmArguments="-Djava.net.preferIPv4Stack=true"
if [ -f "/etc/connective-http/config.props" ]; then
source "/etc/connective-http/config.props"
fi
mkdir "$serverDir/modules" -p
chown connective:connective "$serverDir/modules" -R
ln -sf "/usr/lib/connective-php/ConnectivePHP.jar" "$serverDir/modules/ConnectivePHP.jar"
chown connective "$serverDir/modules/ConnectivePHP.jar"
}
post_remove() {
serverDir=/etc/connective-http
classPathFolders=( "libs/" )
mainType=org.asf.connective.standalone.main.ConnectiveStandalone
credtoolLibs=()
credtoolTarget=""
jvmArguments="-Djava.net.preferIPv4Stack=true"
if [ -f "/etc/connective-http/config.props" ]; then
source "/etc/connective-http/config.props"
fi
rm -f "$serverDir/modules/ConnectivePHP.jar"
if [ -f "$serverDir"/server.ccfg ] && cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg .context.root &>/dev/null; then
phpsupportcode='
# PHP Support Block (Auto-generated, avoid manual removal)
extension "class:org.asf.connective.php.providers.PhpExtensionProvider"
uploadhandler "class:org.asf.connective.php.providers.PhpUploadHandler"'
rootcontextblock="$(cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg .context.root --viewmode ; echo .)"
rootcontextblock="${rootcontextblock//$phpsupportcode$'\n'/}"
rootcontextblock=${rootcontextblock:0:-1}
cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg .context.root &>/dev/null && cq org.asf.connective.standalone.main.ConnectiveConfiguration --source-jar /usr/lib/connective-http/ConnectiveStandalone.jar --source-jar /usr/lib/connective-http/libs/RatsMemory.jar "$serverDir"/server.ccfg . -s .context.root "$rootcontextblock" --ccfg-output --output "$serverDir"/server.ccfg
fi
}
|