Sha256: a49f33f19bf543df779e7e0ea2471e30d89a8f3fce8df4a8ae593b0412277724

Contents?: true

Size: 994 Bytes

Versions: 79

Compression:

Stored size: 994 Bytes

Contents

# How to Forward ssh(1) Agent

`ssh(1)` agent forwarding can is activated in the `CONFIG` section of the hosts file:

```yaml
HOSTS:
  ...
CONFIG:
  forward_ssh_agent: true
```

Beaker will then make the ssh agent running on the beaker coordinator available to the Systems Under Test (SUT).  There is a gotcha though: the agent socket file in the SUT is only available to the user who signed in.  If you want to access remote machine resources as another user, you *must* change the socket permission.

A dirty hack is to `chmod -R 777 /tmp/ssh-*` before changing to another user and relying on `$SSH_AUTH_SOCK`.

Example:

```puppet
exec { '/bin/chmod -R 777 /tmp/ssh-*':
} ->
vcsrepo { '/var/www/app':
  provider => 'git',
  source   => 'https://example.com/git/app.git',
  user     => 'deploy'
}
```

## Cross-SUT access

If you need to be able to SSH between SUTs while running Beaker acceptance tests, please refer to the [enabling cross SUT access](enabling_cross_sut_access.md) document

Version data entries

79 entries across 79 versions & 1 rubygems

Version Path
beaker-6.5.0 docs/how_to/ssh_agent_forwarding.md
beaker-6.4.1 docs/how_to/ssh_agent_forwarding.md
beaker-6.4.0 docs/how_to/ssh_agent_forwarding.md
beaker-6.3.0 docs/how_to/ssh_agent_forwarding.md
beaker-6.2.0 docs/how_to/ssh_agent_forwarding.md
beaker-6.1.0 docs/how_to/ssh_agent_forwarding.md
beaker-5.8.1 docs/how_to/ssh_agent_forwarding.md
beaker-4.42.0 docs/how_to/ssh_agent_forwarding.md
beaker-5.8.0 docs/how_to/ssh_agent_forwarding.md
beaker-5.7.0 docs/how_to/ssh_agent_forwarding.md
beaker-4.41.2 docs/how_to/ssh_agent_forwarding.md
beaker-4.41.1 docs/how_to/ssh_agent_forwarding.md
beaker-5.6.0 docs/how_to/ssh_agent_forwarding.md
beaker-4.41.0 docs/how_to/ssh_agent_forwarding.md
beaker-5.5.0 docs/how_to/ssh_agent_forwarding.md
beaker-5.4.0 docs/how_to/ssh_agent_forwarding.md
beaker-5.3.1 docs/how_to/ssh_agent_forwarding.md
beaker-4.40.2 docs/how_to/ssh_agent_forwarding.md
beaker-5.3.0 docs/how_to/ssh_agent_forwarding.md
beaker-4.40.1 docs/how_to/ssh_agent_forwarding.md