├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── Makefile.inc.default ├── README.md ├── apt.txt ├── buttersink.py ├── buttersink.sublime-project ├── buttersink ├── BestDiffs.py ├── Butter.py ├── ButterStore.py ├── S3Store.py ├── SSHStore.py ├── Store.py ├── __init__.py ├── btrfs.py ├── btrfslist.py ├── buttersink.py ├── ioctl.py ├── progress.py ├── send.py └── util.py ├── pip.txt ├── scripts └── checksumdir ├── setup.cfg ├── setup.py └── yum.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE.txt README.md version.py -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.inc.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/Makefile.inc.default -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/README.md -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/apt.txt -------------------------------------------------------------------------------- /buttersink.py: -------------------------------------------------------------------------------- 1 | buttersink/buttersink.py -------------------------------------------------------------------------------- /buttersink.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink.sublime-project -------------------------------------------------------------------------------- /buttersink/BestDiffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/BestDiffs.py -------------------------------------------------------------------------------- /buttersink/Butter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/Butter.py -------------------------------------------------------------------------------- /buttersink/ButterStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/ButterStore.py -------------------------------------------------------------------------------- /buttersink/S3Store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/S3Store.py -------------------------------------------------------------------------------- /buttersink/SSHStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/SSHStore.py -------------------------------------------------------------------------------- /buttersink/Store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/Store.py -------------------------------------------------------------------------------- /buttersink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /buttersink/btrfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/btrfs.py -------------------------------------------------------------------------------- /buttersink/btrfslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/btrfslist.py -------------------------------------------------------------------------------- /buttersink/buttersink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/buttersink.py -------------------------------------------------------------------------------- /buttersink/ioctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/ioctl.py -------------------------------------------------------------------------------- /buttersink/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/progress.py -------------------------------------------------------------------------------- /buttersink/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/send.py -------------------------------------------------------------------------------- /buttersink/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/buttersink/util.py -------------------------------------------------------------------------------- /pip.txt: -------------------------------------------------------------------------------- 1 | boto 2 | crcmod 3 | flake8 4 | psutil 5 | pudb 6 | -------------------------------------------------------------------------------- /scripts/checksumdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/scripts/checksumdir -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/setup.py -------------------------------------------------------------------------------- /yum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmesCornish/buttersink/HEAD/yum.txt --------------------------------------------------------------------------------