Re: [Tails-dev] Tails build system update

Delete this message

Reply to this message
Author: anonym
Date:  
To: The Tails public development discussion list
Subject: Re: [Tails-dev] Tails build system update
bertagaz:
> We released today all this changes, so for developers that are building
> Tails, we strongly advise to have a look at the build documentation
> [2] and adapt your usage.


In addition, here are steps to clean up the old build environment as a one time step:

    vagrant box list | \
        grep -o "tails-builder-amd64-jessie-[0-9]\{8\}\>" | \
        xargs -l vagrant box remove ; \
    virsh list --all | \
        grep -o "tails-builder-amd64-jessie-[0-9]\{8\}_default" | \
        xargs -l virsh undefine ; \
    virsh vol-list default | \
        grep -o "tails-builder-amd64-jessie-[0-9]\{8\}_\S\+\.img" | \
        sort -u | \
        xargs -l virsh vol-delete --pool default


    # execute the following from your Tails checkout's root
    rm -r vagrant/.vagrant


Cheers!