From dadad337f7debf6b6008f9283ed6d1b0ae48d5ec Mon Sep 17 00:00:00 2001 From: spditner Date: Wed, 30 Apr 2014 11:28:32 -0400 Subject: [PATCH] Update system.pp Updated URL to point to new location for accessing github user content directly. Added -L to follow 301/302 redirects in the future. --- manifests/system.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/system.pp b/manifests/system.pp index ef2cd02a..c15f627b 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -8,7 +8,7 @@ exec { 'system-rvm': path => '/usr/bin:/usr/sbin:/bin', - command => "bash -c '/usr/bin/curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer -o /tmp/rvm-installer && \ + command => "bash -c '/usr/bin/curl -L -s https://raw.githubusercontent.com/wayneeseguin/rvm/master/binscripts/rvm-installer -o /tmp/rvm-installer && \ chmod +x /tmp/rvm-installer && \ rvm_bin_path=/usr/local/rvm/bin rvm_man_path=/usr/local/rvm/man /tmp/rvm-installer --version ${actual_version} && \ rm /tmp/rvm-installer'",