RVM system-wide install script url broken — what is replacement?

前端 未结 2 815
Happy的楠姐
Happy的楠姐 2021-01-02 20:36

My RVM system-wide installation scripts are broken, both in the form of Linode StackScripts and Chef-solo Recipes.

Per the instructions on the RVM website, my script

2条回答
  •  醉酒成梦
    2021-01-02 21:17

    Here is my fix to install the last working version before he major change:

    bash <( curl -L https://github.com/wayneeseguin/rvm/raw/1.3.0/contrib/install-system-wide ) --version '1.3.0'
    

    This is working for me now in production. Good luck!

    UPDATE

    Also, if you are using the chef cookbook from https://github.com/fnichol/chef-rvm or something similar, you can use the following options:

    :rvm => {
      :system_installer_url => "https://github.com/wayneeseguin/rvm/raw/1.3.0/contrib/install-system-wide",
      :version => "1.3.0"
    }
    

提交回复
热议问题