summaryrefslogtreecommitdiffstats
path: root/modules/base/functions/home.pp
blob: fd2f73e492764d8f97b5100891eb230a5cca9118 (plain) (blame)
1
2
3
4
5
6
function base::home(String $user) >> String {
  $user ? {
    'root' => '/root',
    default => "/home/$user",
  }
}