Initialize Git Repository: 'Repository'
All checks were successful
Repository / Repository (amd64, bookworm trixie noble, main) (push) Successful in 12s
Repository / Repository (arm64, bookworm trixie noble, main) (push) Successful in 11s

This commit is contained in:
Cantibra
2026-03-19 14:16:23 +01:00
commit f9ff76a624
16 changed files with 1240 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
/etc/reprepro/distributions
/etc/reprepro/options

10
repository/DEBIAN/control Normal file
View File

@@ -0,0 +1,10 @@
Package: repository
Version:
Architecture:
Installed-Size:
Depends: reprepro, gpg
Priority: optional
Section: misc
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Management Tool for Debian package repository producer

View File

@@ -0,0 +1,55 @@
#!/usr/bin/sh
set -e
set -u
if [ -d '/run/systemd/system' ]; then
/usr/bin/systemctl --system daemon-reload > '/dev/null' 2>&1 || \
/usr/bin/true
fi
case "${1}" in
configure)
if [ -x '/usr/bin/deb-systemd-helper' ]; then
/usr/bin/deb-systemd-helper unmask 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
if /usr/bin/deb-systemd-helper --quiet was-enabled 'reprepro.path'; then
/usr/bin/deb-systemd-helper enable 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
else
/usr/bin/deb-systemd-helper update-state 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
/usr/bin/install --directory '/var/lib/reprepro'
/usr/bin/install --directory --mode='700' '/var/lib/reprepro/gnupg'
/usr/bin/install --directory '/var/lib/reprepro/include'
/usr/bin/install --directory '/var/log/reprepro'
/usr/bin/install --directory '/var/logrotate/reprepro'
if [ ! -f '/var/lib/reprepro/gnupg/pubring.kbx' ] || \
[ ! -f '/var/lib/reprepro/gnupg/trustdb.gpg' ]; then
/usr/bin/gpg --batch --gen-key --homedir '/var/lib/reprepro/gnupg' --quiet <<EOF
Key-Type: RSA
Key-Length: 4096
Subkey-Type: RSA
Subkey-Length: 4096
Name-Real: Repository
Expire-Date: 0
%no-protection
EOF
fi
if [ -x '/usr/bin/deb-systemd-invoke' ]; then
/usr/bin/systemctl --system daemon-reload > '/dev/null' 2>&1 || \
/usr/bin/true
if [ -n "${2}" ]; then
_dh_action='restart'
else
_dh_action='start'
fi
/usr/bin/deb-systemd-invoke "${_dh_action}" 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
esac

39
repository/DEBIAN/postrm Normal file
View File

@@ -0,0 +1,39 @@
#!/usr/bin/sh
set -e
set -u
if [ -d '/run/systemd/system' ]; then
/usr/bin/systemctl --system daemon-reload > '/dev/null' 2>&1 || \
/usr/bin/true
fi
case "${1}" in
remove)
if [ -x '/usr/bin/deb-systemd-helper' ]; then
/usr/bin/deb-systemd-helper mask 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper mask 'reprepro.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
/usr/bin/rm --force --recursive '/var/lib/reprepro/include'
/usr/bin/rm --force --recursive '/var/lib/reprepro/list'
/usr/bin/rm --force --recursive '/var/lib/reprepro/morgue'
;;
purge)
if [ -x '/usr/bin/deb-systemd-helper' ]; then
/usr/bin/deb-systemd-helper purge 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper purge 'reprepro.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
/usr/bin/rm --force --recursive '/var/lib/reprepro'
;;
esac
/usr/bin/rm --force --recursive '/var/log/reprepro'
/usr/bin/rm --force --recursive '/var/logrotate/reprepro'

17
repository/DEBIAN/prerm Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/sh
set -e
set -u
case "${1}" in
remove)
if [ -x '/usr/bin/deb-systemd-invoke' ]; then
/usr/bin/deb-systemd-invoke stop 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke stop 'reprepro.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke disable 'reprepro.path' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
esac