Skip to content

Commit

Permalink
Fix issue where nxos upgrade would timeout due to user prompt. (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbywatson3 authored Dec 1, 2017
1 parent 3e84c05 commit 972d3d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylib/aeon/nxos/autoload/install_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def run(self, timeout=10 * 60):
:param timeout: time/seconds to perform the install action
"""

cmd = 'install all nxos {dir}:{bin}'.format(
cmd = 'terminal dont-ask ; install all nxos {dir}:{bin}'.format(
dir=self.DESTDIR, bin=self.image)

run = self.device.api.exec_opcmd
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def requirements(filename):

setup(
name="aeon-venos",
version="0.9.8",
version="0.9.9",
author="Jeremy Schulman",
url='https://github.com/Apstra/aeon-venos',
author_email="jeremy@apstra.com",
Expand Down

0 comments on commit 972d3d2

Please sign in to comment.