Inital Commit
All checks were successful
Reprepro Wrapper / Reprepro Wrapper [arm64] (push) Successful in 12s
Reprepro Wrapper / Reprepro Wrapper [amd64] (push) Successful in 11s

This commit is contained in:
Cantibra
2025-10-26 21:11:05 +01:00
commit d59fb7ee55
20 changed files with 1285 additions and 0 deletions

2
root/DEBIAN/conffiles Normal file
View File

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

10
root/DEBIAN/control Normal file
View File

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

64
root/DEBIAN/postinst Normal file
View File

@@ -0,0 +1,64 @@
#!/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-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro-import.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro-morgue.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
if /usr/bin/deb-systemd-helper --quiet was-enabled 'reprepro-import.path'; then
/usr/bin/deb-systemd-helper enable 'reprepro-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
else
/usr/bin/deb-systemd-helper update-state 'reprepro-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
if /usr/bin/deb-systemd-helper --quiet was-enabled 'reprepro-morgue.timer'; then
/usr/bin/deb-systemd-helper enable 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
else
/usr/bin/deb-systemd-helper update-state 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
/usr/bin/chgrp --quiet 'adm' '/var/log/reprepro'
/usr/bin/chgrp --quiet 'adm' '/var/logrotate/reprepro'
if [ ! -f '/var/lib/gnupg/pubring.kbx' ] || [ ! -f '/var/lib/gnupg/trustdb.gpg' ]; then
/usr/bin/gpg --batch --gen-key --homedir '/var/lib/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-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke "${_dh_action}" 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
esac

48
root/DEBIAN/postrm Normal file
View File

@@ -0,0 +1,48 @@
#!/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-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper mask 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper mask 'reprepro-import.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper mask 'reprepro-morgue.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
/usr/bin/rm --force --recursive '/var/log/reprepro/'*
/usr/bin/rm --force --recursive '/var/log/reprepro/'.*
/usr/bin/rm --force --recursive '/var/logrotate/reprepro/'*
/usr/bin/rm --force --recursive '/var/logrotate/reprepro/'.*
;;
purge)
if [ -x '/usr/bin/deb-systemd-helper' ]; then
/usr/bin/deb-systemd-helper purge 'reprepro-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper purge 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
/usr/bin/rm --force --recursive '/var/lib/gnupg/'*
/usr/bin/rm --force --recursive '/var/lib/gnupg/'.*
/usr/bin/rm --force --recursive '/var/lib/reprepro/'*
/usr/bin/rm --force --recursive '/var/lib/reprepro/'.*
/usr/bin/rm --force --recursive '/var/log/reprepro/'*
/usr/bin/rm --force --recursive '/var/log/reprepro/'.*
/usr/bin/rm --force --recursive '/var/logrotate/reprepro/'*
/usr/bin/rm --force --recursive '/var/logrotate/reprepro/'.*
;;
esac

19
root/DEBIAN/prerm Normal file
View File

@@ -0,0 +1,19 @@
#!/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-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke stop 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke disable 'reprepro-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke disable 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
esac