Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
cd /tmp
 
# Sign DEB packages
dpkg-sig --cache-passphrase --sign builder  `find debian-8/ -name \*deb`
 
# Build signed apt repository
mkdir -p apt/conf
cat > apt/conf/distributions <<__EOT__
Origin: Bigtop
Label: Bigtop
Suite: stable
Codename: bigtop
Version: 1.2.1
Architectures: amd64 source
Components: contrib
Description: Apache Bigtop
SignWith: 8C10EE0A
__EOT__$ 
 
cat > apt/conf/options <<__EOT__

verbose
ask-passphrase
__EOT__

reprepro --ask-passphrase -Vb . includedeb bigtop `find debian-8/ -name \*deb`

...