Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Fixes #17214 - add more info about capsule tar #423

Merged
merged 1 commit into from Nov 22, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions hooks/post/10-post_install.rb
Expand Up @@ -35,9 +35,9 @@ def new_install?

if Kafo::Helpers.module_enabled?(@kafo, 'katello')
say <<MSG
* To install additional capsule on separate machine continue by running:
* To install an additional capsule on a separate machine run the following command:

capsule-certs-generate --capsule-fqdn "<%= color('$CAPSULE', :info) %>" --certs-tar "<%= color('~/$CAPSULE-certs.tar', :info) %>"
capsule-certs-generate --capsule-fqdn "<%= color('$CAPSULE', :info) %>" --certs-tar "<%= color('/root/$CAPSULE-certs.tar', :info) %>"

MSG
end
Expand All @@ -61,7 +61,7 @@ def new_install?
Once this is completed run the steps below to start the smartproxy installation:

1. Ensure that the foreman-installer-katello package is installed on the system.
2. Copy <%= color("#{certs_tar}", :info) %> to the system <%= color("#{capsule_fqdn}", :info) %>
2. Copy the following file <%= color("#{certs_tar}", :info) %> to the system <%= color("#{capsule_fqdn}", :info) %> at the following location <%= color("#{File.join('/root', File.basename(certs_tar))}", :info) %>
3. Run the following commands on the capsule (possibly with the customized
parameters, see <%= color("#{installer_name} --scenario capsule --help", :info) %> and
documentation for more info on setting up additional services):
Expand Down