Browse Source

tweak turnkey scripts

tteckster 1 year ago
parent
commit
19a33639dc

+ 9 - 1
turnkey/turnkey-core.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-fileserver.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-gitea.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-gitlab.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-nextcloud.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-observium.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-owncloud.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-torrentserver.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo

+ 9 - 1
turnkey/turnkey-wordpress.sh

@@ -38,6 +38,7 @@ EOF
 }
 }
 header_info
 header_info
 read -p "Press ENTER to continue..."
 read -p "Press ENTER to continue..."
+header_info
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errexit  #Exit immediately if a pipeline returns a non-zero status
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
 set -o nounset  #Treat unset variables as an error
 set -o nounset  #Treat unset variables as an error
@@ -157,12 +158,19 @@ pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/
 # Success message
 # Success message
 msg "Starting LXC Container..."
 msg "Starting LXC Container..."
 pct start "$CTID"
 pct start "$CTID"
-info "LXC container '$CTID' was successfully created."
+sleep 5
+IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo "TurnKey ${NAME} Password" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
 echo $PASS >>~/turnkey-${NAME}.creds
 echo $PASS >>~/turnkey-${NAME}.creds
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
 if [[ -f /etc/systemd/system/ping-instances.service ]]; then
   systemctl start ping-instances.service
   systemctl start ping-instances.service
 fi
 fi
+header_info
+echo
+info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
+echo
 info "Proceed to the LXC console to complete the setup."
 info "Proceed to the LXC console to complete the setup."
+echo
 info "login: root"
 info "login: root"
 info "password: $PASS"
 info "password: $PASS"
+echo