├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── doc ├── examples │ └── sas_discover_counters_tape.svg ├── man │ ├── Makefile │ └── man1 │ │ ├── Makefile │ │ ├── sas_counters.1 │ │ ├── sas_devices.1 │ │ ├── sas_discover.1 │ │ └── ses_report.1 └── txt │ ├── sas_counters.txt │ ├── sas_devices.txt │ ├── sas_discover.txt │ └── ses_report.txt ├── mkdeb.sh ├── mkrpm_el.sh ├── mkrpm_fedora.sh ├── sasutils-el7.spec ├── sasutils.spec ├── sasutils ├── __init__.py ├── cli │ ├── __init__.py │ ├── sas_counters.py │ ├── sas_devices.py │ ├── sas_discover.py │ ├── sas_mpath_snic_alias.py │ ├── sas_sd_snic_alias.py │ ├── sas_st_snic_alias.py │ └── ses_report.py ├── sas.py ├── scsi.py ├── ses.py ├── smp.py ├── sysfs.py └── vpd.py ├── setup.py └── tests ├── gen_sysfs_testenv.py └── sysfs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/README.rst -------------------------------------------------------------------------------- /doc/examples/sas_discover_counters_tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/examples/sas_discover_counters_tape.svg -------------------------------------------------------------------------------- /doc/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/man/Makefile -------------------------------------------------------------------------------- /doc/man/man1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/man/man1/Makefile -------------------------------------------------------------------------------- /doc/man/man1/sas_counters.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/man/man1/sas_counters.1 -------------------------------------------------------------------------------- /doc/man/man1/sas_devices.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/man/man1/sas_devices.1 -------------------------------------------------------------------------------- /doc/man/man1/sas_discover.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/man/man1/sas_discover.1 -------------------------------------------------------------------------------- /doc/man/man1/ses_report.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/man/man1/ses_report.1 -------------------------------------------------------------------------------- /doc/txt/sas_counters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/txt/sas_counters.txt -------------------------------------------------------------------------------- /doc/txt/sas_devices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/txt/sas_devices.txt -------------------------------------------------------------------------------- /doc/txt/sas_discover.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/txt/sas_discover.txt -------------------------------------------------------------------------------- /doc/txt/ses_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/doc/txt/ses_report.txt -------------------------------------------------------------------------------- /mkdeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/mkdeb.sh -------------------------------------------------------------------------------- /mkrpm_el.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/mkrpm_el.sh -------------------------------------------------------------------------------- /mkrpm_fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/mkrpm_fedora.sh -------------------------------------------------------------------------------- /sasutils-el7.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils-el7.spec -------------------------------------------------------------------------------- /sasutils.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils.spec -------------------------------------------------------------------------------- /sasutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sasutils/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sasutils/cli/sas_counters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/cli/sas_counters.py -------------------------------------------------------------------------------- /sasutils/cli/sas_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/cli/sas_devices.py -------------------------------------------------------------------------------- /sasutils/cli/sas_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/cli/sas_discover.py -------------------------------------------------------------------------------- /sasutils/cli/sas_mpath_snic_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/cli/sas_mpath_snic_alias.py -------------------------------------------------------------------------------- /sasutils/cli/sas_sd_snic_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/cli/sas_sd_snic_alias.py -------------------------------------------------------------------------------- /sasutils/cli/sas_st_snic_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/cli/sas_st_snic_alias.py -------------------------------------------------------------------------------- /sasutils/cli/ses_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/cli/ses_report.py -------------------------------------------------------------------------------- /sasutils/sas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/sas.py -------------------------------------------------------------------------------- /sasutils/scsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/scsi.py -------------------------------------------------------------------------------- /sasutils/ses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/ses.py -------------------------------------------------------------------------------- /sasutils/smp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/smp.py -------------------------------------------------------------------------------- /sasutils/sysfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/sysfs.py -------------------------------------------------------------------------------- /sasutils/vpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/sasutils/vpd.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/setup.py -------------------------------------------------------------------------------- /tests/gen_sysfs_testenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/tests/gen_sysfs_testenv.py -------------------------------------------------------------------------------- /tests/sysfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-rc/sasutils/HEAD/tests/sysfs.py --------------------------------------------------------------------------------