Skip to content

Commit

Permalink
updated numeric, moved new points higher up
Browse files Browse the repository at this point in the history
Signed-off-by: Vikram Karve <[email protected]>
  • Loading branch information
vkarve-chef authored Jan 13, 2023
1 parent d677958 commit f947f4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
Expand All @@ -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
Expand Down

0 comments on commit f947f4e

Please sign in to comment.