Welcome to mirror list, hosted at ThFree Co, Russian Federation.

postinst « scripts « Synology « Installer - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bda2ac6afab1e890e1c0a2729e68d792a13fd899 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
mkdir -p /usr/local/bin

echo "mono ${SYNOPKG_PKGDEST}/Duplicati.CommandLine.exe $@" > "/usr/local/bin/duplicati-cli" 
chmod +x "/usr/local/bin/duplicati-cli"

echo "" >> "${SYNOPKG_PKGDEST}/webroot/nph-proxy.cgi"
echo "mono ${SYNOPKG_PKGDEST}/CGIProxyHandler.exe" >> "${SYNOPKG_PKGDEST}/webroot/nph-proxy.cgi"
chmod +x "${SYNOPKG_PKGDEST}/webroot/nph-proxy.cgi"

exit 0