-
-
Save thommay/805761 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash "add multiverse source repository " do | |
user "root" | |
code "bash < <( sed -E 's/^#.*(deb.*multiverse)$/\\1/g' -i /etc/apt/sources.list )" | |
notifies :run, "execute[apt-get update]", :immediately | |
end | |
execute "apt-get update" do | |
action :nothing | |
end | |
package "jruby" do | |
action :install | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment