├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── WarewulfInventory.hs ├── ansible-warewulf-inventory.cabal ├── bright.py ├── bright_devices.py ├── slurm.py └── warewulf.pl /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /WarewulfInventory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/WarewulfInventory.hs -------------------------------------------------------------------------------- /ansible-warewulf-inventory.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/ansible-warewulf-inventory.cabal -------------------------------------------------------------------------------- /bright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/bright.py -------------------------------------------------------------------------------- /bright_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/bright_devices.py -------------------------------------------------------------------------------- /slurm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/slurm.py -------------------------------------------------------------------------------- /warewulf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylex/ansible-hpc/HEAD/warewulf.pl --------------------------------------------------------------------------------