Skip to content

Commit

Permalink
Update vanity link to be Swarm specific
Browse files Browse the repository at this point in the history
This will help with other installation options
that may be offered in the future, by isolating namespaces.
  • Loading branch information
hsoerensen committed Mar 13, 2024
1 parent 1918916 commit dd0eee2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/installation/installation-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To skip wallet setup, run the following command:

```bash
export VOINETWORK_SKIP_WALLET_SETUP=1
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

## Setting a Custom Telemetry Name as Part of Installation (advanced)
Expand All @@ -34,7 +34,7 @@ This would typically be done if you are automating the installation process.

```bash
export VOINETWORK_TELEMETRY_NAME="my_custom_telemetry_name"
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

A custom telemetry name can be combined with other environment variables.
4 changes: 2 additions & 2 deletions docs/installation/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and where we have automated as much as possible.
To set up a new Voi node, run the following command:

```bash
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

## Using an Existing Account/Address with Mnemonic
Expand All @@ -22,7 +22,7 @@ To import your account and set up a new Voi node, run the following command:

```bash
export VOINETWORK_IMPORT_ACCOUNT=1
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

???+ info
Expand Down
2 changes: 1 addition & 1 deletion docs/migrating.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Install Voi Swarm on your server by importing your existing wallet using your mn

```bash
export VOINETWORK_IMPORT_ACCOUNT=1
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

=== "Installing on same server"
Expand Down
2 changes: 1 addition & 1 deletion docs/notification-guides/notification-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ First, we need to make sure that Voi Swarm picks up your changes to notification
To do this, rerun the installation script:

```bash
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

After the script has run and applied changes to the environment, we need to send a test notification to make sure
Expand Down
2 changes: 1 addition & 1 deletion docs/operating/participation-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To keep your participation key up-to-date, you can run the installation script a
if your current key is expected to expire within the next 14 days.

```bash
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

!!! tip
Expand Down
2 changes: 1 addition & 1 deletion docs/operating/setup-notifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The format of the schedule is following the [CRON format](https://pkg.go.dev/git
To apply your notification configuration to the stack, rerun the installation script:

```bash
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

## Testing Your Notification Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/updating/swarm-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ To update the Voi Swarm package, you can run the installation script again. This
latest version, including Docker configuration and utility commands.

```bash
/bin/bash -c "$(curl -fsSL https://get.voi.network/install)"
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
```

0 comments on commit dd0eee2

Please sign in to comment.