Skip to content
This repository has been archived by the owner on Feb 7, 2019. It is now read-only.

Change shell for $dashboard_user #7

Merged
merged 1 commit into from Jun 7, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion VagrantConf/modules/dashboard/manifests/init.pp
Expand Up @@ -165,7 +165,10 @@
ensure => 'present',
comment => 'Puppet Dashboard',
gid => $dashboard_group,
shell => '/sbin/nologin',
shell => $operatingsystem ? {
'Ubuntu' => '/bin/false',
default => '/sbin/nologin',
},
managehome => true,
}

Expand Down