├── .gitignore ├── .gitmodules ├── COPYRIGHT ├── LICENSE ├── README.md ├── fatten ├── lib └── shellfire │ └── fatten │ ├── bootstrap1.snippet │ ├── bootstrap2.snippet │ ├── fatten.functions │ └── validate.functions └── swaddling ├── fatten ├── .gitignore ├── deb │ └── deb.conf ├── file │ └── file.conf ├── package.conf ├── rpm │ └── rpm.conf └── skeleton │ └── all │ └── usr │ └── bin │ └── .gitignore └── swaddling.conf /.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/README.md -------------------------------------------------------------------------------- /fatten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/fatten -------------------------------------------------------------------------------- /lib/shellfire/fatten/bootstrap1.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/lib/shellfire/fatten/bootstrap1.snippet -------------------------------------------------------------------------------- /lib/shellfire/fatten/bootstrap2.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/lib/shellfire/fatten/bootstrap2.snippet -------------------------------------------------------------------------------- /lib/shellfire/fatten/fatten.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/lib/shellfire/fatten/fatten.functions -------------------------------------------------------------------------------- /lib/shellfire/fatten/validate.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/lib/shellfire/fatten/validate.functions -------------------------------------------------------------------------------- /swaddling/fatten/.gitignore: -------------------------------------------------------------------------------- 1 | body 2 | -------------------------------------------------------------------------------- /swaddling/fatten/deb/deb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/swaddling/fatten/deb/deb.conf -------------------------------------------------------------------------------- /swaddling/fatten/file/file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/swaddling/fatten/file/file.conf -------------------------------------------------------------------------------- /swaddling/fatten/package.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/swaddling/fatten/package.conf -------------------------------------------------------------------------------- /swaddling/fatten/rpm/rpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/swaddling/fatten/rpm/rpm.conf -------------------------------------------------------------------------------- /swaddling/fatten/skeleton/all/usr/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/swaddling/fatten/skeleton/all/usr/bin/.gitignore -------------------------------------------------------------------------------- /swaddling/swaddling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfire-dev/fatten/HEAD/swaddling/swaddling.conf --------------------------------------------------------------------------------