File: clientmatch.pp

package info (click to toggle)
puppet-module-saz-ssh 13.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 564 kB
  • sloc: ruby: 1,511; sh: 10; makefile: 7
file content (19 lines) | stat: -rw-r--r-- 291 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# OpenSSH client `Match` criteria. See `ssh_config(5)`
type Ssh::ClientMatch = Enum[
  '!all',
  'all',
  '!canonical',
  'canonical',
  '!exec',
  'exec',
  '!final',
  'final',
  '!host',
  'host',
  '!localuser',
  'localuser',
  '!originalhost',
  'originalhost',
  '!user',
  'user',
]