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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2017-07-28 10:01:14 +0300
committernachoparker <nacho@ownyourbits.com>2017-08-11 00:17:56 +0300
commit24ccde481bec47b33cb341da1f6a7b8f0890e1cc (patch)
tree0a34bafa750a9da51176e5a676eb95831912aac7 /nextcloudpi.sh
parent6df5f735b7ed1ac17033f938b0d621f688a8a6d7 (diff)
fix smbclient segfaultv0.17.16
Diffstat (limited to 'nextcloudpi.sh')
-rw-r--r--nextcloudpi.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/nextcloudpi.sh b/nextcloudpi.sh
index bd9586e6..8a12ee3d 100644
--- a/nextcloudpi.sh
+++ b/nextcloudpi.sh
@@ -18,6 +18,7 @@
CONFDIR=/usr/local/etc/nextcloudpi-config.d/
UPLOADTMPDIR=/var/www/nextcloud/data/tmp
APTINSTALL="apt-get install -y --no-install-recommends"
+export DEBIAN_FRONTEND=noninteractive
install()
@@ -162,7 +163,7 @@ EOF
/usr/local/bin/ncp-update
# External requirements for Apps
- $APTINSTALL smbclient
+ $APTINSTALL -o "Dpkg::Options::=--force-confold" -t stretch php-smbclient
}
configure() { :; }