vm/static/instruction.sh
Daniel Hansson 6b1c7fee14
happy new year! (#1749)
* happy new year!

Signed-off-by: enoch85 <github@hanssonit.se>

* fix some comments and restore geoip database files

Signed-off-by: szaimen <szaimen@e.mail.de>

Co-authored-by: szaimen <szaimen@e.mail.de>
2021-01-01 15:34:25 +01:00

38 lines
1.9 KiB
Bash

#!/bin/bash
# T&M Hansson IT AB © - 2021, https://www.hanssonit.se/
BIGreen='\e[1;92m' # Green
IGreen='\e[0;92m' # Green
Color_Off='\e[0m' # Text Reset
clear
cat << INST1
+-----------------------------------------------------------------------+
| Welcome to the first setup of your own Nextcloud Server! :) |
| |
INST1
echo -e "|" "${IGreen}To run the startup script type the sudoer password, then hit [ENTER].${Color_Off} |"
echo -e "|" "${IGreen}The default sudoer password is: ${BIGreen}nextcloud${IGreen}${Color_Off} |"
cat << INST2
| |
| You can find the complete install instructions here: |
| Nextcloud VM = https://bit.ly/2S8eGfS |
| Nextcloud Home/SME Server = https://bit.ly/2k2TNaM |
| |
| Optional: |
| If you are running Windows 10 (1809) or later, you can simply use SSH |
| from the command prompt. You can also use Putty, download it here: |
| https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html |
| Connect like this: ssh ncadmin@local.IP.of.this.server |
| |
| This server could be made maintenance free by using automatic updates |
| with the built in update script. If you want automatic updates on |
| a weekly schedule, choose to configure it later during this setup. |
| |
| ###################### T&M Hansson IT - $(date +"%Y") ###################### |
+-----------------------------------------------------------------------+
INST2
exit 0