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

Fix stig overlay #11114

Merged
merged 2 commits into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utils/create-stig-overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def yes_no_prompt():
prompt = "Would you like to proceed? (Y/N): "

while True:
data = str(raw_input(prompt)).lower()
data = str(input(prompt)).lower()

if data in ("yes", "y"):
return True
Expand Down Expand Up @@ -142,7 +142,7 @@ def parse_args():
action="store", dest="ssg_xccdf_filename",
help="A SSG generated XCCDF file. Can be XCCDF 1.1 or XCCDF 1.2 \
For example: ssg-rhel8-xccdf.xml")
parser.add_argument("-o", "--output", default=outfile,
parser.add_argument("-o", "--output", required=True,
action="store", dest="output_file",
help="STIG overlay XML content file \
[default: %s]" % outfile)
Expand Down
Loading