You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be useful for special system users needing more ruby isolation. Main use case here for me is to allow the user running a Hudson/Jenkins instance to add more rubies and spin up gemsets while leaving a system-wide RVM install alone. We might not want to impact a production running passenger or rails stack running while performing CI tasks.
Tentative idea is to have an rvm::user recipe that will iterate over an rvm/user_installs array of system users. Issues to solve are how to set defaults such as default_ruby and gems in some kind of hash that isn't overly complicated.
The text was updated successfully, but these errors were encountered:
For anyone curious, this is about 80% complete. I'm hooking into Chef's popen4 to fork a subprocess as another user to assume their identity. A user attribute needs to be added to all resources and possibly some re-organizing of attributes. I'm trying to minimize breaking changes but it may be worth the pain in the long run.
This can be useful for special system users needing more ruby isolation. Main use case here for me is to allow the user running a Hudson/Jenkins instance to add more rubies and spin up gemsets while leaving a system-wide RVM install alone. We might not want to impact a production running passenger or rails stack running while performing CI tasks.
Tentative idea is to have an
rvm::user
recipe that will iterate over anrvm/user_installs
array of system users. Issues to solve are how to set defaults such asdefault_ruby
andgems
in some kind of hash that isn't overly complicated.The text was updated successfully, but these errors were encountered: