Skip to content

Commit

Permalink
Fix URLS
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Jul 21, 2020
1 parent 21c7476 commit 96d4fc5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ Suggests:
mongolite
Language: en-GB
URL: https://docs.ropensci.org/ssh (website),
https://github.com/ropensci.org/ssh (devel)
https://github.com/ropensci/ssh (devel)
VignetteBuilder: knitr
4 changes: 2 additions & 2 deletions vignettes/intro.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ Installation from source requires [`libssh`](https://www.libssh.org/) (which is
sudo apt-get install -y libssh-dev
```

On __Fedora__ we need [libssh-devel](https://apps.fedoraproject.org/packages/libssh-devel):
On __Fedora__ we need [libssh-devel](https://src.fedoraproject.org/rpms/libssh):

```
sudo yum install libssh-devel
````

On __CentOS / RHEL__ we install [libssh-devel](https://apps.fedoraproject.org/packages/libssh-devel) via EPEL:
On __CentOS / RHEL__ we install [libssh-devel](https://src.fedoraproject.org/rpms/libssh) via EPEL:

```
sudo yum install epel-release
Expand Down
8 changes: 4 additions & 4 deletions vignettes/intro.Rmdin
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ options(width = 120, max.print = 100)
library(ssh)

library <- function(package){
withCallingHandlers(base::library(credentials),
withCallingHandlers(base::library(credentials),
packageStartupMessage = function(e) {
cat(e$message)
invokeRestart("muffleMessage")
Expand All @@ -44,13 +44,13 @@ Installation from source requires [`libssh`](https://www.libssh.org/) (which is
sudo apt-get install -y libssh-dev
```

On __Fedora__ we need [libssh-devel](https://apps.fedoraproject.org/packages/libssh-devel):
On __Fedora__ we need [libssh-devel](https://src.fedoraproject.org/rpms/libssh):

```
sudo yum install libssh-devel
````

On __CentOS / RHEL__ we install [libssh-devel](https://apps.fedoraproject.org/packages/libssh-devel) via EPEL:
On __CentOS / RHEL__ we install [libssh-devel](https://src.fedoraproject.org/rpms/libssh) via EPEL:

```
sudo yum install epel-release
Expand Down Expand Up @@ -116,7 +116,7 @@ ssh_key_info()

## Execute Script or Command

Run a command or script on the host and block while it runs. By default stdout and stderr are steamed directly back to the client. This function returns the exit status of the remote command (hence it does not automatically error for an unsuccessful exit status).
Run a command or script on the host and block while it runs. By default stdout and stderr are steamed directly back to the client. This function returns the exit status of the remote command (hence it does not automatically error for an unsuccessful exit status).

```{r}
out <- ssh_exec_wait(session, command = 'whoami')
Expand Down

0 comments on commit 96d4fc5

Please sign in to comment.