Puppet Function: rustup::home
- Defined in:
- functions/home.pp
- Function type:
- Puppet Language
Overview
Return the default home directory for a user on this OS
8 9 10 |
# File 'functions/home.pp', line 8
function rustup::home(String[1] $user) >> Stdlib::Absolutepath {
"${lookup('rustup::home', Stdlib::Absolutepath)}${user}"
}
|