You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
apt-ftparchive packages . | gzip > Packages.gz
|
|
apt-ftparchive contents . > Contents
|
|
cat <<EOF >Release
|
|
Origin: Grml Autobuild
|
|
Label: Grml Autobuild
|
|
NotAutomatic: yes
|
|
EOF
|
|
apt-ftparchive release . >> Release
|
|
|
|
# vim:foldmethod=marker ts=2 ft=sh ai expandtab sw=2
|