install curl if it's missing

if /usr/bin/curl is not present. install it and log the installation and errors to a file for debugging purposes
pull/39/head
Idar Lund 2021-01-15 23:07:15 +01:00 committed by GitHub
parent de14bb72f6
commit 5352a651d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,13 @@ function setup() {
# Create tmp scan directory
mkdir -p $SCAN_DIR &> /dev/null
# Install curl if it does not exist
if [ ! -f /usr/bin/curl ]; then
opkg update >> /root/opkgupdate.log 2>&1
opkg list >> /root/opkglist.log 2>&1
opkg install curl >> /root/opkginstall.log 2>&1
fi
# Create tmp scan file if it doesn't exist
SCAN_FILE=$SCAN_DIR/scan-count
if [ ! -f $SCAN_FILE ]; then