update shared module junos to handle root logins

This commit is contained in:
Peter Sprygada 2016-02-08 08:12:09 -05:00
parent 9c36c0aa80
commit 8f9badb2b4

View file

@ -77,7 +77,8 @@ class NetworkModule(AnsibleModule):
def connect(self):
self.connection = Cli(self)
self.connection.connect()
self.execute('cli')
if self.connection.shell._matched_prompt.strip().endswith('%'):
self.execute('cli')
self.execute('set cli screen-length 0')
def configure(self, commands):