Metadata-Version: 1.1
Name: butterknife
Version: 0.1.0
Summary: Butterknife makes bare-metal Linux deployment dead-simple using the Linux Containers (LXC) and Btrfs filesystem.
Home-page: http://github.com/v6sa/butterknife
Author: Lauri Võsandi
Author-email: lauri.vosandi@gmail.com
License: MIT
Description: Butterknife command-line utility
        ================================
        
        Install dependencies:
        
        .. code:: bash
        
            sudo apt-get install lxc python3-dev cython3 python3-pip pigz btrfs-progs
            sudo pip3 install falcon click
            sudo apt-get install python3-lxc # Ubuntu 14.04 or older
        
        Place overlay/usr/bin/butterknife somewhere in PATH, eg /usr/bin and make it executable.
        
        
        Listing templates
        -----------------
        
        List local templates at /var/butterknife/pool:
        
        .. code:: bash
        
            butterknife list
        
        List local templates in a particular directory:
        
        .. code:: bash
        
            butterknife list file:///path/to/directory
            
        List templates at /var/butterknife/pool on a remote machine via SSH:
        
        .. code:: bash
        
            butterknife list ssh://hostname
            
        List templates at remote machine via HTTP:
        
            butterknife list http[s]://hostname[:port]
        
        
        Pushing/pulling templates
        -------------------------
        
        Currently pull over SSH is working. Following replicates
        /var/butterknife/pool from machine *hostname* to local pool
        at /var/butterknife/pool:
        
        .. code:: bash
        
            butterknife pull ssh://hostname
        
        Of course you can apply filters:
        
        .. code:: bash
        
            butterknife pull ssh://hostname --architecture x86 --namespace com.koodur.butterknife
        
        You can also pull via HTTP:
        
        .. code:: bash
        
            butterknife pull http://butterknife.koodur.com
            
        Note that symmetric push/pull requires patched btrfs-progs which has additional -p and -C flags for btrfs receive.
        
        
        Multicast
        ---------
        
        Sending local template via multicast:
        
        .. code:: bash
        
            butterknife serve multicast @template\:com.koodur.butterknife.Ubuntu\:x86_64\:snap7
        
        You can even multicast a remote subvolume:
        
        .. code:: bash
        
            butterknife serve multicast @template\:com.koodur.butterknife.Ubuntu\:x86_64\:snap7 --pool ssh://hostname
        
        Receiving to local pool at /var/butterknife/pool:
        
        .. code:: bash
        
            butterknife multicast receive
        
        
Keywords: btrfs falcon multicast http snapshot bare-metal lxc
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: Freely Distributable
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: System :: Recovery Tools
Classifier: Topic :: System :: Software Distribution
