Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#
# [*rvmrc*]
# Content for the global .rvmrc file placed in the user's homedir. If empty, .rvmrc will no be touched.
# Defaults to ''.
# Defaults to false.
#
# [*home*]
# Set to home directory of user. Defaults to /home/${user}.
Expand Down Expand Up @@ -75,8 +75,8 @@
define single_user_rvm::install (
$user = $title,
$version = 'stable',
$rvmrc = '',
$home = '',
$rvmrc = false,
$home = false,
$auto_upgrade = false,
) {

Expand Down
6 changes: 3 additions & 3 deletions manifests/install_ruby.pp
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# [*user*]
# The user for which this Ruby will be installed. Defaults to 'rvm'.
#
# [*verify downloads*]
# [*verify_downloads*]
# Set to a value that will be added to the --verify-downloads flag. If empty the whole flag will not be added. More
# info on the flag function in doc above. Defaults to ''.
# info on the flag function in doc above. Defaults to false.
#
# [*force_binary*]
# Set to true enable the --binary flag. More info on the flag function in doc above. Defaults to false.
Expand All @@ -78,7 +78,7 @@
define single_user_rvm::install_ruby (
$ruby_string = $title,
$user = 'rvm',
$verify_downloads = '',
$verify_downloads = false,
$force_binary = false,
$disable_binary = false,
$movable = false,
Expand Down