Skip to content

Commit ca16746

Browse files
committed
docs(deisctl): remove sudo from deisctl installer examples
1 parent f6093db commit ca16746

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $ ssh-add ~/.vagrant.d/insecure_private_key
5454
Install the [deisctl utility](deisctl#installation) used to provision and operate Deis.
5555

5656
```console
57-
$ curl -sSL http://deis.io/deisctl/install.sh | sudo sh
57+
$ curl -sSL http://deis.io/deisctl/install.sh | sh
5858
```
5959

6060
Export `DEISCTL_TUNNEL` so you can connect to one of the VMs using the `deisctl` client on your workstation.

deisctl/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
To install the latest `deisctl` on Linux or Mac OS X, run this command:
1010

1111
```console
12-
$ curl -sSL http://deis.io/deisctl/install.sh | sudo sh
12+
$ curl -sSL http://deis.io/deisctl/install.sh | sh
1313
```
1414

1515
The installer puts `deisctl` in */usr/local/bin* and downloads current Deis unit files
@@ -46,8 +46,8 @@ Then, export the `DEISCTL_UNITS` environment variable so deisctl can find the un
4646
$ export DEISCTL_UNITS="$PATH_TO_DEISCTL/units"
4747
```
4848

49-
This is also useful for specifying custom behavior on Deis units, such as using
50-
fleet metadata to lock the builder to a more powerful node, or keep application
49+
This is also useful for specifying custom behavior on Deis units, such as using
50+
fleet metadata to lock the builder to a more powerful node, or keep application
5151
nodes free of control plane elements.
5252

5353
## Remote Configuration

tests/bin/test-latest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ log_phase "Installing clients"
2626
make -C client build
2727

2828
# install latest deisctl from the website
29-
curl -sSL http://deis.io/deisctl/install.sh | sudo sh
29+
curl -sSL http://deis.io/deisctl/install.sh | sh
3030

3131
# ensure we use distributed unit files
3232
unset DEISCTL_UNITS

0 commit comments

Comments
 (0)