├── .gitignore ├── .gitreview ├── .travis.yml ├── 3.0 ├── extra │ └── backup.sh └── hooks │ └── directlun │ ├── README │ ├── after_vm_destroy.py │ ├── before_vm_migrate_destination.py │ ├── before_vm_start.py │ ├── borra.sh │ ├── deploy.sh │ └── sudoers.vdsm_hook_directlun ├── COPYING ├── README-3.0-3.1.md ├── README.md ├── doc ├── README.rhev-elastic ├── README.rhev-vlan ├── README.rhev-vm-cluster ├── README.rhev-vm-os ├── README.rhev-vm-tax └── sample-etc-cron.d-rhevm-utils ├── extra └── backup.sh ├── hooks ├── README ├── deploy.sh ├── hostusb │ ├── after_vm_destroy.py │ ├── before_vm_migrate_source.py │ ├── before_vm_start.py │ ├── deploy.sh │ └── sudoers.vdsm_hook_hostusb ├── nestedvt │ ├── before_vm_start.py │ ├── deploy.sh │ └── modprobe.conf ├── smbios │ ├── Makefile.am │ ├── README │ ├── before_vm_start.py │ └── deploy.sh └── vmdisk │ ├── before_vm_start.py │ └── deploy.sh ├── monitoring ├── README.md ├── rhev-nagios-host-cpu.py ├── rhev-nagios-host-mem-used.py ├── rhev-nagios-host-mem.py ├── rhev-nagios-host-vms.py ├── rhev-nagios-host.py ├── rhev-nagios-storage.py ├── rhev-nagios-table-host-cpu.py ├── rhev-nagios-table-host-mem-used.py ├── rhev-nagios-table-host-mem.py ├── rhev-nagios-table-host-vms.py ├── rhev-nagios-table-host.py ├── rhev-nagios-table-storage.py └── rhev-nagios-table.py ├── requirements.txt ├── rhev-cleanpinning.py ├── rhev-clone.py ├── rhev-elastic.py ├── rhev-ha.py ├── rhev-hypervisor-autoupgrade.py ├── rhev-keyring.py ├── rhev-ovf.py ├── rhev-policy.py ├── rhev-poweron.py ├── rhev-vlan.py ├── rhev-vm-applist.py ├── rhev-vm-clone-to-export-with-shut.py ├── rhev-vm-clone-to-export.py ├── rhev-vm-cluster.py ├── rhev-vm-create.py ├── rhev-vm-os.py ├── rhev-vm-start.py ├── rhev-vm-tax.py ├── rhev_functions.py ├── test-requirements.txt └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.pyc 3 | .tox 4 | -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/.gitreview -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/.travis.yml -------------------------------------------------------------------------------- /3.0/extra/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/extra/backup.sh -------------------------------------------------------------------------------- /3.0/hooks/directlun/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/hooks/directlun/README -------------------------------------------------------------------------------- /3.0/hooks/directlun/after_vm_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/hooks/directlun/after_vm_destroy.py -------------------------------------------------------------------------------- /3.0/hooks/directlun/before_vm_migrate_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/hooks/directlun/before_vm_migrate_destination.py -------------------------------------------------------------------------------- /3.0/hooks/directlun/before_vm_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/hooks/directlun/before_vm_start.py -------------------------------------------------------------------------------- /3.0/hooks/directlun/borra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/hooks/directlun/borra.sh -------------------------------------------------------------------------------- /3.0/hooks/directlun/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/hooks/directlun/deploy.sh -------------------------------------------------------------------------------- /3.0/hooks/directlun/sudoers.vdsm_hook_directlun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/3.0/hooks/directlun/sudoers.vdsm_hook_directlun -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/COPYING -------------------------------------------------------------------------------- /README-3.0-3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/README-3.0-3.1.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.rhev-elastic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/doc/README.rhev-elastic -------------------------------------------------------------------------------- /doc/README.rhev-vlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/doc/README.rhev-vlan -------------------------------------------------------------------------------- /doc/README.rhev-vm-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/doc/README.rhev-vm-cluster -------------------------------------------------------------------------------- /doc/README.rhev-vm-os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/doc/README.rhev-vm-os -------------------------------------------------------------------------------- /doc/README.rhev-vm-tax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/doc/README.rhev-vm-tax -------------------------------------------------------------------------------- /doc/sample-etc-cron.d-rhevm-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/doc/sample-etc-cron.d-rhevm-utils -------------------------------------------------------------------------------- /extra/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/extra/backup.sh -------------------------------------------------------------------------------- /hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/README -------------------------------------------------------------------------------- /hooks/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/deploy.sh -------------------------------------------------------------------------------- /hooks/hostusb/after_vm_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/hostusb/after_vm_destroy.py -------------------------------------------------------------------------------- /hooks/hostusb/before_vm_migrate_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/hostusb/before_vm_migrate_source.py -------------------------------------------------------------------------------- /hooks/hostusb/before_vm_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/hostusb/before_vm_start.py -------------------------------------------------------------------------------- /hooks/hostusb/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/hostusb/deploy.sh -------------------------------------------------------------------------------- /hooks/hostusb/sudoers.vdsm_hook_hostusb: -------------------------------------------------------------------------------- 1 | vdsm ALL=(ALL) NOPASSWD: /bin/chown 2 | -------------------------------------------------------------------------------- /hooks/nestedvt/before_vm_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/nestedvt/before_vm_start.py -------------------------------------------------------------------------------- /hooks/nestedvt/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/nestedvt/deploy.sh -------------------------------------------------------------------------------- /hooks/nestedvt/modprobe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/nestedvt/modprobe.conf -------------------------------------------------------------------------------- /hooks/smbios/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/smbios/Makefile.am -------------------------------------------------------------------------------- /hooks/smbios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/smbios/README -------------------------------------------------------------------------------- /hooks/smbios/before_vm_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/smbios/before_vm_start.py -------------------------------------------------------------------------------- /hooks/smbios/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/smbios/deploy.sh -------------------------------------------------------------------------------- /hooks/vmdisk/before_vm_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/vmdisk/before_vm_start.py -------------------------------------------------------------------------------- /hooks/vmdisk/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/hooks/vmdisk/deploy.sh -------------------------------------------------------------------------------- /monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/README.md -------------------------------------------------------------------------------- /monitoring/rhev-nagios-host-cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-host-cpu.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-host-mem-used.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-host-mem-used.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-host-mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-host-mem.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-host-vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-host-vms.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-host.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-storage.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-table-host-cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-table-host-cpu.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-table-host-mem-used.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-table-host-mem-used.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-table-host-mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-table-host-mem.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-table-host-vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-table-host-vms.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-table-host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-table-host.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-table-storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-table-storage.py -------------------------------------------------------------------------------- /monitoring/rhev-nagios-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/monitoring/rhev-nagios-table.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhev-cleanpinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-cleanpinning.py -------------------------------------------------------------------------------- /rhev-clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-clone.py -------------------------------------------------------------------------------- /rhev-elastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-elastic.py -------------------------------------------------------------------------------- /rhev-ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-ha.py -------------------------------------------------------------------------------- /rhev-hypervisor-autoupgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-hypervisor-autoupgrade.py -------------------------------------------------------------------------------- /rhev-keyring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-keyring.py -------------------------------------------------------------------------------- /rhev-ovf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-ovf.py -------------------------------------------------------------------------------- /rhev-policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-policy.py -------------------------------------------------------------------------------- /rhev-poweron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-poweron.py -------------------------------------------------------------------------------- /rhev-vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vlan.py -------------------------------------------------------------------------------- /rhev-vm-applist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-applist.py -------------------------------------------------------------------------------- /rhev-vm-clone-to-export-with-shut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-clone-to-export-with-shut.py -------------------------------------------------------------------------------- /rhev-vm-clone-to-export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-clone-to-export.py -------------------------------------------------------------------------------- /rhev-vm-cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-cluster.py -------------------------------------------------------------------------------- /rhev-vm-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-create.py -------------------------------------------------------------------------------- /rhev-vm-os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-os.py -------------------------------------------------------------------------------- /rhev-vm-start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-start.py -------------------------------------------------------------------------------- /rhev-vm-tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev-vm-tax.py -------------------------------------------------------------------------------- /rhev_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/rhev_functions.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | nose -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iranzo/rhevm-utils/HEAD/tox.ini --------------------------------------------------------------------------------