55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# File 'manifests/init.pp', line 55
class octopass (
String $repo_ensure,
String $repo_gpgkey_url,
String $package_ensure,
String $configfile,
String $configfile_owner,
String $configfile_group,
String $configfile_mode,
String $token,
String $organization,
String $team,
String $owner,
Optional[String] $repository,
String $endpoint,
Optional[String] $group,
Optional[String] $home,
Optional[String] $shell,
Integer $uid_starts,
Integer $gid,
Integer $cache,
Boolean $syslog,
Optional[Array[String]] $shared_users,
) {
include octopass::repo
include octopass::install
include octopass::config
Class['::octopass::repo']
-> Class['::octopass::install']
-> Class['::octopass::config']
}
|