Ubuntu Pastebin

Paste from nacc at Tue, 5 Sep 2017 17:47:38 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#!/bin/bash

TEMPDIR=$(mktemp -d)

pushd ${TEMPDIR}

# Can we clone?
git-ubuntu clone ipsec-tools
cd ipsec-tools
# Can we build from source (should use pristine-tar)
git-ubuntu build-source

# Can we from scratch import?
git-ubuntu import --reimport --no-push ipsec-tools

popd ${TEMPDIR}
rm -rf ${TEMPDIR}
Download as text