Last active
December 31, 2015 06:29
-
-
Save xstasi/7947843 to your computer and use it in GitHub Desktop.
Maintain a basic APT repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /var/www/repository | |
apt-ftparchive packages . > Packages | |
cat Packages|gzip -9 > Packages.gz | |
apt-ftparchive release . > Release | |
rm -f Release.gpg | |
gpg -abs -o Release.gpg Release | |
# Access the repository with: deb http://server.url/repository ./ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment