2020-07-07 16:48:49 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
"""Command line utility for executing operations on remote hosts."""
|
|
|
|
|
|
|
|
|
|
import os.path
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
# Get relative imports to work when the package is not installed on the PYTHONPATH.
|
|
|
|
|
if __name__ == "__main__" and __package__ is None:
|
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
|
2023-07-16 01:04:14 +00:00
|
|
|
from buildscripts.powercycle_setup import cli
|
2020-07-07 16:48:49 -04:00
|
|
|
|
|
|
|
|
cli.main(sys.argv)
|