Skip to content
Snippets Groups Projects

WIP: Add AUP support for agent

Closed Bo-Chun Chen requested to merge github/fork/diedpigs/feat-add-aup into feat-cod-rmq
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -32,8 +32,8 @@ queuename = rc_util.encode_name(args.username)
@@ -32,8 +32,8 @@ queuename = rc_util.encode_name(args.username)
if not args.accept:
if not args.accept:
question = "Attention: User Policy is not accepted, continue?"
question = "Attention: User Policy is not accepted, continue?"
reply = str(raw_input(question+' (y/n): ')).lower().strip()
reply = str(input(question + " (y/n): ")).lower().strip()
if reply[0] != 'y':
if reply[0] != "y":
sys.exit(0)
sys.exit(0)
if args.email == "":
if args.email == "":
Loading