├── .gitignore ├── LICENSE ├── README.rst ├── doc ├── FAQ.rst ├── img │ ├── butterknife-advanced-options.png │ ├── butterknife-instance-list.png │ ├── butterknife-main-screen.png │ ├── butterknife-partitioning-method.png │ ├── butterknife-select-version.png │ ├── butterknife-transfer-method.png │ ├── butterknife-usecase-http.png │ ├── butterknife-usecase-multicast.png │ ├── butterknife-usecase-tee.png │ └── mikrotik-pxe-boot.png ├── migrate.py └── rdesktop-wrapper ├── host ├── MANIFEST.in ├── README.rst ├── butterknife │ ├── __init__.py │ ├── api.py │ ├── cli.py │ ├── fssum.py │ ├── pool.py │ ├── subvol.py │ ├── templates │ │ ├── index.html │ │ └── packages.html │ ├── transport │ │ ├── __init__.py │ │ ├── http.py │ │ └── ssh.py │ └── verify.py ├── misc │ └── butterknife └── setup.py ├── provision ├── README.rst ├── isolinux.cfg ├── kernel-amd64.config ├── kernel-i386.config ├── overlay │ ├── etc │ │ └── motd │ └── sbin │ │ ├── butterknife-advanced-options │ │ ├── butterknife-discover │ │ ├── butterknife-partition-size │ │ ├── butterknife-provision │ │ ├── butterknife-select-btrfs-filesystem │ │ ├── butterknife-select-disk │ │ └── init └── patches │ ├── isohybrid.diff │ └── ms-sys.diff ├── pxe ├── butterknife-amd64 ├── butterknife-i386 ├── ldlinux.c32 ├── libutil.c32 ├── memtest86+.bin ├── menu.c32 ├── pxelinux.0 └── pxelinux.cfg │ └── default └── template └── README.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/README.rst -------------------------------------------------------------------------------- /doc/FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/FAQ.rst -------------------------------------------------------------------------------- /doc/img/butterknife-advanced-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-advanced-options.png -------------------------------------------------------------------------------- /doc/img/butterknife-instance-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-instance-list.png -------------------------------------------------------------------------------- /doc/img/butterknife-main-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-main-screen.png -------------------------------------------------------------------------------- /doc/img/butterknife-partitioning-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-partitioning-method.png -------------------------------------------------------------------------------- /doc/img/butterknife-select-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-select-version.png -------------------------------------------------------------------------------- /doc/img/butterknife-transfer-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-transfer-method.png -------------------------------------------------------------------------------- /doc/img/butterknife-usecase-http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-usecase-http.png -------------------------------------------------------------------------------- /doc/img/butterknife-usecase-multicast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-usecase-multicast.png -------------------------------------------------------------------------------- /doc/img/butterknife-usecase-tee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/butterknife-usecase-tee.png -------------------------------------------------------------------------------- /doc/img/mikrotik-pxe-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/img/mikrotik-pxe-boot.png -------------------------------------------------------------------------------- /doc/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/migrate.py -------------------------------------------------------------------------------- /doc/rdesktop-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/doc/rdesktop-wrapper -------------------------------------------------------------------------------- /host/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/MANIFEST.in -------------------------------------------------------------------------------- /host/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/README.rst -------------------------------------------------------------------------------- /host/butterknife/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/butterknife/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/api.py -------------------------------------------------------------------------------- /host/butterknife/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/cli.py -------------------------------------------------------------------------------- /host/butterknife/fssum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/fssum.py -------------------------------------------------------------------------------- /host/butterknife/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/pool.py -------------------------------------------------------------------------------- /host/butterknife/subvol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/subvol.py -------------------------------------------------------------------------------- /host/butterknife/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/templates/index.html -------------------------------------------------------------------------------- /host/butterknife/templates/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/templates/packages.html -------------------------------------------------------------------------------- /host/butterknife/transport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/butterknife/transport/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/transport/http.py -------------------------------------------------------------------------------- /host/butterknife/transport/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/transport/ssh.py -------------------------------------------------------------------------------- /host/butterknife/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/butterknife/verify.py -------------------------------------------------------------------------------- /host/misc/butterknife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/misc/butterknife -------------------------------------------------------------------------------- /host/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/host/setup.py -------------------------------------------------------------------------------- /provision/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/README.rst -------------------------------------------------------------------------------- /provision/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/isolinux.cfg -------------------------------------------------------------------------------- /provision/kernel-amd64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/kernel-amd64.config -------------------------------------------------------------------------------- /provision/kernel-i386.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/kernel-i386.config -------------------------------------------------------------------------------- /provision/overlay/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/etc/motd -------------------------------------------------------------------------------- /provision/overlay/sbin/butterknife-advanced-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/sbin/butterknife-advanced-options -------------------------------------------------------------------------------- /provision/overlay/sbin/butterknife-discover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/sbin/butterknife-discover -------------------------------------------------------------------------------- /provision/overlay/sbin/butterknife-partition-size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/sbin/butterknife-partition-size -------------------------------------------------------------------------------- /provision/overlay/sbin/butterknife-provision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/sbin/butterknife-provision -------------------------------------------------------------------------------- /provision/overlay/sbin/butterknife-select-btrfs-filesystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/sbin/butterknife-select-btrfs-filesystem -------------------------------------------------------------------------------- /provision/overlay/sbin/butterknife-select-disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/sbin/butterknife-select-disk -------------------------------------------------------------------------------- /provision/overlay/sbin/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/overlay/sbin/init -------------------------------------------------------------------------------- /provision/patches/isohybrid.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/patches/isohybrid.diff -------------------------------------------------------------------------------- /provision/patches/ms-sys.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/provision/patches/ms-sys.diff -------------------------------------------------------------------------------- /pxe/butterknife-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/butterknife-amd64 -------------------------------------------------------------------------------- /pxe/butterknife-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/butterknife-i386 -------------------------------------------------------------------------------- /pxe/ldlinux.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/ldlinux.c32 -------------------------------------------------------------------------------- /pxe/libutil.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/libutil.c32 -------------------------------------------------------------------------------- /pxe/memtest86+.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/memtest86+.bin -------------------------------------------------------------------------------- /pxe/menu.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/menu.c32 -------------------------------------------------------------------------------- /pxe/pxelinux.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/pxelinux.0 -------------------------------------------------------------------------------- /pxe/pxelinux.cfg/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/pxe/pxelinux.cfg/default -------------------------------------------------------------------------------- /template/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurivosandi/butterknife/HEAD/template/README.rst --------------------------------------------------------------------------------