Browse Source

Option to bypass the confirmation check in ESPurna OTA Manager

i18n
Xose Pérez 6 years ago
parent
commit
c66e5dc90c
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      code/ota.py

+ 6
- 3
code/ota.py View File

@ -216,6 +216,7 @@ if __name__ == '__main__':
parser.add_argument("-o", "--flags", help="extra flags", default='')
parser.add_argument("-p", "--password", help="auth password", default='')
parser.add_argument("-s", "--sort", help="sort devices list by field", default='hostname')
parser.add_argument("-y", "--yes", help="do not ask for confirmation", default=0, action='count')
parser.add_argument("hostnames", nargs='*', help="Hostnames to update")
args = parser.parse_args()
@ -287,7 +288,9 @@ if __name__ == '__main__':
print("FLAGS = %s" % board['flags'])
print("ENV = %s" % env)
response = input("\nAre these values right [y/N]: ")
print()
if response == "y":
response = True
if args.yes == 0:
response = (input("\nAre these values right [y/N]: ") == "y")
if response:
print()
run(board, env)

Loading…
Cancel
Save