Skip to content
New issue

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

Revert "Disable REX on install" #273

Merged
merged 1 commit into from Nov 21, 2017
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion docs/satellite-clone.md
Expand Up @@ -4,7 +4,8 @@

- The playbook will update the cloned Satellite hostname to match the hostname of the original Satellite from which the backup is generated.
- On the clone, refreshing the manifest will invalidate the original Satellite's manifest.
- DHCP, DNS, TFTP, and remote execution will be disabled during the install to avoid configuration errors. If you want to use provisioning on the cloned Satellite, you will have to manually re-enable these settings after the playbook run.
- DHCP, DNS, and TFTP will be disabled during the install to avoid configuration errors. If you want to use provisioning on the cloned Satellite, you will have to manually re-enable these settings after the playbook run.
- If you are using Remote Execution, you will have to re-copy the ssh keys to your clients. The keys are regenerate during the install portion of the clone process.
- The playbook will reset the admin password to "changeme".
- The playbook run may may take a while to complete.
- You can clone RHEL 6 backup data to a RHEL 7 machine. In this case, you must update the variable `rhel_migration` to true as explained later in this document. Please note that this scenario is supported only for *Satellite 6.2*.
Expand Down
2 changes: 1 addition & 1 deletion roles/satellite-clone/tasks/main.yml
Expand Up @@ -163,7 +163,7 @@
command: katello-installer --capsule-dns false --capsule-dhcp false --capsule-tftp false
when: satellite_version == 6.1
- name: run Satellite 6.2 installer
command: satellite-installer --scenario satellite --foreman-proxy-dns false --foreman-proxy-dhcp false --foreman-proxy-tftp false --no-enable-foreman-plugin-remote-execution --no-enable-foreman-proxy-plugin-remote-execution-ssh
command: satellite-installer --scenario satellite --foreman-proxy-dns false --foreman-proxy-dhcp false --foreman-proxy-tftp false
when: satellite_version == 6.2

- block:
Expand Down