├── .gitignore ├── LICENSE ├── README.md ├── ansible_modules └── cisco_file_transfer.py ├── experimental_donotuse ├── cisco_config_merge.py └── cisco_config_replace.py └── tests ├── cisco_logging.txt ├── cisco_logging1.txt ├── example.yml ├── test_cisco_file_transfer.py └── test_suite.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/README.md -------------------------------------------------------------------------------- /ansible_modules/cisco_file_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/ansible_modules/cisco_file_transfer.py -------------------------------------------------------------------------------- /experimental_donotuse/cisco_config_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/experimental_donotuse/cisco_config_merge.py -------------------------------------------------------------------------------- /experimental_donotuse/cisco_config_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/experimental_donotuse/cisco_config_replace.py -------------------------------------------------------------------------------- /tests/cisco_logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/tests/cisco_logging.txt -------------------------------------------------------------------------------- /tests/cisco_logging1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/tests/cisco_logging1.txt -------------------------------------------------------------------------------- /tests/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/tests/example.yml -------------------------------------------------------------------------------- /tests/test_cisco_file_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktbyers/scp_sidecar/HEAD/tests/test_cisco_file_transfer.py -------------------------------------------------------------------------------- /tests/test_suite.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | py.test -s -v --ansible-host-pattern=cisco 4 | --------------------------------------------------------------------------------