Skip to content
Snippets Groups Projects
Unverified Commit f947f4ec authored by Vikram Karve's avatar Vikram Karve Committed by GitHub
Browse files

updated numeric, moved new points higher up


Signed-off-by: default avatarVikram Karve <vikram.karve@progress.com>
parent d677958f
No related merge requests found
......@@ -279,6 +279,10 @@ However there are several caveats to be aware of:
1. You will almost certainly want to uncomment the `base_dir` in `omnibus.rb`,
or at the very least change `cache_dir` and `build_dir` as otherwise it'll try
to use `/var/cache/omnibus` and `/opt/$MY_PROJECT_NAME`, requiring root.
1. Update software dependencies listed in the project configuration in `config/projects/$MY_PROJECT_NAME.rb`.
You can refer the software `.rb` files present in the `config/software` folder.
1. The `install_dir` specified in the project file typically requires `root` privilege at build time.
Change it another location such as `"/tmp/#{name}"` to avoid running as `root`.
1. The default configuration created for you references a lot of things
that are in the default config that come from the `omnibus-software` gem.
So you want to use those you'll need to either uncomment it in the `Gemfile`,
......@@ -293,10 +297,6 @@ you will need to have a post install step to create those binstubs.
1. If you specify an override of the version of the `ruby`, you will also need
to override `rubygems` and `bundler` to match the versions in that version of
`ruby` or you'll get failures around bundler version mismatches.
1. Update software dependencies listed in the project configuration in `config/projects/$MY_PROJECT_NAME.rb`.
You can refer the software `.rb` files present in the `config/software` folder.
2. The `install_dir` specified in the project file typically requires `root` privilege at build time.
Change it another location such as `"/tmp/#{name}"` to avoid running as `root`.
The build command above will of course build on your local host thus being
specific to the OS and base system you are on. But the skeleten setup by
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment