We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The runit package is provided by
deb http://us.archive.ubuntu.com/ubuntu/ precise universe
the recipe failed when the below was the case ( on an absolute barebones install )
# cat /etc/apt/sources.list deb http://archive.ubuntu.com/ubuntu precise main
# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=12.04 DISTRIB_CODENAME=precise DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS"
a poor fix might be something like
bash "ensure ubuntu universe is present" do universe_repo = node["ubuntu"]["universe_repo"] || "deb http://us.archive.ubuntu.com/ubuntu/ precise universe" code "echo #{universe_repo} >> /etc/apt/sources.list" not_if "grep #{universe_repo} /etc/apt/sources.list" end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The runit package is provided by
the recipe failed when the below was the case ( on an absolute barebones install )
a poor fix might be something like
The text was updated successfully, but these errors were encountered: