From a114fc6587f435bac96d988cc8fde35af49df70d Mon Sep 17 00:00:00 2001 From: Christopher Date: Tue, 22 Aug 2023 12:07:19 -0500 Subject: [PATCH] Move the comments to the top --- runtipi/install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/runtipi/install.sh b/runtipi/install.sh index c7b6ce2..5fbf4de 100644 --- a/runtipi/install.sh +++ b/runtipi/install.sh @@ -1,9 +1,5 @@ #!/bin/bash -echo "This script installs a new Runtipi instance on a fresh Ubuntu server." -echo "This script does not ensure system security." -echo "" - # Get the IP address CURRENT_IP=$(hostname -I | awk '{print $1}') @@ -13,7 +9,11 @@ RUNTIPI_PATH="/opt/runtipi" # Generate a path for a log file to output into for debugging LOGPATH=$(realpath "runtipi_install_$(date +%s).log") -echo "If there is an error, please check the log file at $LOGPATH" +echo "This script installs a new Runtipi instance on a fresh Ubuntu server." +echo "This script does not ensure system security." +echo "" + +echo "If there is an error, please check the log file at: $LOGPATH" echo "" # Install dependencies