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

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Light <eric@ericlight.com>2016-03-04 05:06:32 +0300
committerEric Light <eric@ericlight.com>2016-03-04 05:06:32 +0300
commit34c88e0c05e1ba49420916ae7bc694b7c10ef3d1 (patch)
tree893acf87a871f187268e93f0dd6b25de95a7fe79 /include/data_upload
parent2b95019b628043bb0718b9280c344fbcf5581768 (diff)
Removed errant semicolon which broke uploads
Resolves below error: ./lynis: 25: ./include/data_upload: Syntax error: ";" unexpected
Diffstat (limited to 'include/data_upload')
-rw-r--r--include/data_upload2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/data_upload b/include/data_upload
index e162a936..96179a27 100644
--- a/include/data_upload
+++ b/include/data_upload
@@ -22,7 +22,7 @@
PROGRAM_VERSION="101"
# Data upload destination
- if [ "${UPLOAD_SERVER}" = "" ]; then; UPLOAD_SERVER="portal.cisofy.com"; fi
+ if [ "${UPLOAD_SERVER}" = "" ]; then UPLOAD_SERVER="portal.cisofy.com"; fi
UPLOAD_URL="https://${UPLOAD_SERVER}/upload/"
LogText "Upload server: ${UPLOAD_SERVER}"
LogText "URL to upload to: ${UPLOAD_URL}"