From d5a6d6650f224a0132b6ea3c3fa0fd22bf93ec85 Mon Sep 17 00:00:00 2001 From: Stephen Wadeley Date: Thu, 14 Feb 2019 11:04:10 +0000 Subject: [PATCH 1/2] fix rex-urlkeyfile help text (#292) Improve help text for --rex-urlkeyfile command #292 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7c3c05..950a719 100644 --- a/README.md +++ b/README.md @@ -664,8 +664,8 @@ Options: Comma separated list of proxies to install Foreman's SSH keys for remote execution. --rex-urlkeyfile=REMOTE_EXEC_URL - HTTP/S location to install a file containing one or - multiple Foreman's SSH keys for remote execution. + HTTP/S location of a file containing one or + more Foreman's SSH keys for remote execution. --rex-apikeys Fetch Foreman's SSH keys from the API. --rex-authpath=REMOTE_EXEC_AUTHPATH Full path to local authorized_keys file in order to From b0e474881360906212945c13be20e0ff89e92683 Mon Sep 17 00:00:00 2001 From: Stephen Wadeley Date: Tue, 19 Feb 2019 11:50:05 +0000 Subject: [PATCH 2/2] fix rex-urlkeyfile help text (#292) update help to match readme. --- bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index 16c266c..786fc3d 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -1197,7 +1197,7 @@ def exec_service(service, command, failonerror=True): parser.add_option("--rex", dest="remote_exec", action="store_true", help="Install Foreman's SSH key for remote execution.", default=False) parser.add_option("--rex-user", dest="remote_exec_user", default="root", help="Local user used by Foreman's remote execution feature.") parser.add_option("--rex-proxies", dest="remote_exec_proxies", help="Comma separated list of proxies to install Foreman's SSH keys for remote execution.") - parser.add_option("--rex-urlkeyfile", dest="remote_exec_url", help="HTTP/S location to install a file containing one or multiple Foreman's SSH keys for remote execution.") + parser.add_option("--rex-urlkeyfile", dest="remote_exec_url", help="HTTP/S location of a file containing one or more Foreman's SSH keys for remote execution.") parser.add_option("--rex-apikeys", dest="remote_exec_apikeys", action="store_true", help="Fetch Foreman's SSH keys from the API.") parser.add_option("--rex-authpath", dest="remote_exec_authpath", help="Full path to local authorized_keys file in order to install Foreman's SSH keys for remote execution. Default ~/.ssh/authorized_keys") parser.add_option("--enablerepos", dest="enablerepos", help="Repositories to be enabled via subscription-manager - comma separated", metavar="enablerepos")