├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── filetranspile └── test ├── fakeroot └── etc │ ├── hostname │ ├── hostname.link │ ├── resolve.conf │ └── sysconfig │ └── network-scripts │ ├── ifcfg-blah │ └── ifcfg-fake ├── ignition-no-files.json ├── ignition-no-storage.json ├── ignition-overwrite-with-fakeroot-file.json ├── ignition.json └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | ignition-validate 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/README.md -------------------------------------------------------------------------------- /filetranspile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/filetranspile -------------------------------------------------------------------------------- /test/fakeroot/etc/hostname: -------------------------------------------------------------------------------- 1 | something 2 | -------------------------------------------------------------------------------- /test/fakeroot/etc/hostname.link: -------------------------------------------------------------------------------- 1 | hostname -------------------------------------------------------------------------------- /test/fakeroot/etc/resolve.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/test/fakeroot/etc/resolve.conf -------------------------------------------------------------------------------- /test/fakeroot/etc/sysconfig/network-scripts/ifcfg-blah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/test/fakeroot/etc/sysconfig/network-scripts/ifcfg-blah -------------------------------------------------------------------------------- /test/fakeroot/etc/sysconfig/network-scripts/ifcfg-fake: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test/ignition-no-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/test/ignition-no-files.json -------------------------------------------------------------------------------- /test/ignition-no-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/test/ignition-no-storage.json -------------------------------------------------------------------------------- /test/ignition-overwrite-with-fakeroot-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/test/ignition-overwrite-with-fakeroot-file.json -------------------------------------------------------------------------------- /test/ignition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/test/ignition.json -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashcrow/filetranspiler/HEAD/test/test.sh --------------------------------------------------------------------------------