├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── agent ├── enable-ec2-spot-hibernation └── hibagent ├── etc ├── hibagent-config.cfg └── init.d │ └── hibagent ├── hibagent.spec ├── setup.py └── test ├── __init__.py └── hibagent_test.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | sources: 2 | python2.7 setup.py sdist --formats=gztar 3 | mv dist/*.gz . 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/README.md -------------------------------------------------------------------------------- /agent/enable-ec2-spot-hibernation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/agent/enable-ec2-spot-hibernation -------------------------------------------------------------------------------- /agent/hibagent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/agent/hibagent -------------------------------------------------------------------------------- /etc/hibagent-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/etc/hibagent-config.cfg -------------------------------------------------------------------------------- /etc/init.d/hibagent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/etc/init.d/hibagent -------------------------------------------------------------------------------- /hibagent.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/hibagent.spec -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | # Placeholder 2 | -------------------------------------------------------------------------------- /test/hibagent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/ec2-hibernate-linux-agent/HEAD/test/hibagent_test.py --------------------------------------------------------------------------------