-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rvm group is not creating during install #57
Comments
Hi @archongtv. The group is created by the Just remember that you'll need to add your user to the |
@raelgc |
I'm booting a 20.04 vm in order to investigate this issue. |
After run
Are you guys running standard Ubuntu 20.04? |
Thanks for test, I found install via shell script may cause the issue (I am configuring a script to auto-install RVM in my workflow). I tested on Ubuntu 20.04 and compared between manually installation and script installation. The Manually installation is ok but script failed. My script: set -e
export DEBIAN_FRONTEND="noninteractive"
apt-get update
apt-get install -y software-properties-common
apt-add-repository -y ppa:rael-gc/rvm
apt-get update
apt-get install -y rvm
usermod -a -G rvm $USER Output:
|
Running into the same issue with Ubuntu and Docker. Tried both
Docker build output:
Does this have something to do with the package being install by a root user? I do this same thing in an AMI for EC2 without issue. |
@joshbranham Yes, it's related to the |
when using PPA repository rvm group is not created in postinst.
The text was updated successfully, but these errors were encountered: