We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def verify_space_available(self, search_pattern=r"(.*) bytes available "): ''' Verify sufficient space is available on remote network device Return a boolean ''' remote_cmd = "show {0}".format(self.file_system) remote_output = self.ssh_ctl_chan.send_command(remote_cmd) match = re.search(search_pattern, remote_output) space_avail = int(match.group(1)) if space_avail > self.file_size: return True return False
Should probably change this to dir and not show
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should probably change this to dir and not show
The text was updated successfully, but these errors were encountered: