blob: 6a40a78d6a5f31c15a6e61a1300aefc361f21da9 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
export PATH="/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH"
exec /usr/bin/java \
-Xmx512m \
-Dlogback.configurationFile=/etc/cryptomator/logback.xml \
-Dcryptomator.ipcPortPath=~/.Cryptomator/ipcPort.bin \
-Dcryptomator.settingsPath=~/.Cryptomator/settings.json \
-jar /usr/share/java/cryptomator/cryptomator.jar "$@"
|