This commit is contained in:
parent
952dc1493d
commit
e434c5c5f1
|
@ -10,8 +10,8 @@ Copy the above into any server post install scripts box and it should get things
|
|||
|
||||
## Advanced Usage and Provider Specific Deploys
|
||||
|
||||
For example if you wanted to deploy to DigitalOcean you would use the following example.
|
||||
For example if you wanted to deploy to ovh you would use the following example.
|
||||
```bash
|
||||
#!/usr/bin/env bash
|
||||
source <(curl -s https://imp-bootstap:sHEG3NTC6og8pCJDTF6EPYb8jLmbskx5Ns@git.nixc.us/Colin_/bootstrap-scripts/raw/branch/main/strap.sh) bootstrap
|
||||
source <(curl -s https://imp-bootstap:sHEG3NTC6og8pCJDTF6EPYb8jLmbskx5Ns@git.nixc.us/Colin_/bootstrap-scripts/raw/branch/main/strap.sh) bootstrap ovh gluster nosalt
|
||||
```
|
||||
|
|
|
@ -76,7 +76,12 @@ esac
|
|||
echo Installing Apt Packages
|
||||
apt-get update
|
||||
DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::='--force-confold' --force-yes -fuy dist-upgrade
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y asciinema docker-ctop git glances htop iftop zsh
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y asciinema ca-certificates gnupg docker-ctop git glances htop iftop zsh
|
||||
curl -sSL https://pkgs.wiretrustee.com/debian/public.key | sudo gpg --dearmor --output /usr/share/keyrings/wiretrustee-archive-keyring.gpg
|
||||
echo 'deb [signed-by=/usr/share/keyrings/wiretrustee-archive-keyring.gpg] https://pkgs.wiretrustee.com/debian stable main' | sudo tee /etc/apt/sources.list.d/wiretrustee.list
|
||||
apt-get update
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y netbird
|
||||
|
||||
## Install Gluster Post
|
||||
echo Gluster Post Function
|
||||
case $2 in
|
||||
|
|
Loading…
Reference in New Issue