├── .bzr-builddeb └── default.conf ├── GPL ├── README.md ├── TODO ├── apt-btrfs-snapper ├── apt_btrfs_snapper.py ├── data └── 80-btrfs-snapshot ├── debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── rules └── source │ └── format ├── setup.cfg └── setup.py /.bzr-builddeb/default.conf: -------------------------------------------------------------------------------- 1 | [BUILDDEB] 2 | native = True 3 | -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/GPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apt-btrfs-snapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/apt-btrfs-snapper -------------------------------------------------------------------------------- /apt_btrfs_snapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/apt_btrfs_snapper.py -------------------------------------------------------------------------------- /data/80-btrfs-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/data/80-btrfs-snapshot -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/debian/install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [build] 2 | i18n=True 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronick/apt-btrfs-snapper/HEAD/setup.py --------------------------------------------------------------------------------