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

instruction.sh « static - github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42c428c501cfba99d5f5c92279e81fc6c500a3ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash

# T&M Hansson IT AB © - 2022, 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