update shared module junos to handle root logins

pull/14439/head
Peter Sprygada 9 years ago
parent 9c36c0aa80
commit 8f9badb2b4

@ -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):

Loading…
Cancel
Save