40 lines
2.0 KiB
Bash
Executable File
40 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# T&M Hansson IT AB © - 2019, https://www.hanssonit.se/
|
|
|
|
VMLOGS=/var/log/nextcloud
|
|
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 |
|
|
| |
|
|
| To be 100% sure that all the keystrokes work correctly (like @), |
|
|
| please use an SSH terminal like Putty. You can download it here: |
|
|
| https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html |
|
|
| Connect like this: ncadmin@local.IP.of.this.server |
|
|
| |
|
|
| You can schedule the Nextcloud update process using a cron job. |
|
|
| This is done using a script built into this server that automatically |
|
|
| updates Nextcloud, sets secure permissions, and logs the successful |
|
|
| update to $VMLOGS/update_run.log |
|
|
| Just choose to configure it when asked to do so later in this script. |
|
|
| |
|
|
| ###################### T&M Hansson IT - $(date +"%Y") ###################### |
|
|
+-----------------------------------------------------------------------+
|
|
INST2
|
|
|
|
exit 0
|