feat(apt-source): run apt-update after installation
Some checks failed
/ ansible-semaphore (push) Successful in 1m23s
/ atlasswprobe (push) Successful in 9m45s
/ daliserver (push) Successful in 2m19s
/ forgejo (push) Successful in 6m1s
/ forgejo-runner (push) Successful in 1m32s
/ http-mqtt-bridge (push) Successful in 4m50s
/ keycloak-23 (push) Successful in 9m36s
/ linux-diversion-ath-regd-optional (push) Successful in 17m53s
/ lottieconverter (push) Successful in 57s
/ matterbridge (push) Successful in 3m52s
/ matrix-element-web (push) Failing after 41s
/ matrix-hydrogen (push) Failing after 33s
/ matrix.to (push) Successful in 6m9s
/ maubot (push) Successful in 4m32s
/ maubot-plugin-spaceapi (push) Successful in 2m6s
/ maubot-plugin-ultimaker (push) Successful in 2m7s
/ mautrix-signal (push) Successful in 1m6s
/ mautrix-telegram (push) Successful in 1m6s
/ mediawiki-extension-auth-remoteuser (push) Successful in 1m5s
/ mediawiki-extension-nativesvghandler (push) Successful in 1m3s
/ mediawiki-extension-openidconnect (push) Successful in 1m13s
/ mediawiki-extension-pluggableauth (push) Successful in 1m5s
/ mqtt2prometheus (push) Successful in 4m15s
/ mumble-web (push) Successful in 58s
/ mumble-web-data (push) Failing after 5m56s
/ mumble-web-proxy (push) Failing after 55s
/ prometheus-ipmi-exporter (push) Successful in 1m49s
/ prometheus-dnsbl-exporter (push) Successful in 1m32s
/ prometheus2influxdb (push) Successful in 34s
/ python3-mautrix (push) Successful in 1m15s
/ python3-telethon (push) Successful in 1m18s
/ repo.s3lph.me-apt-source (push) Successful in 33s
/ republik-feeder (push) Successful in 47s
/ woodpecker-agent (push) Successful in 2m16s
/ woodpecker-cli (push) Successful in 2m15s
Some checks failed
/ ansible-semaphore (push) Successful in 1m23s
/ atlasswprobe (push) Successful in 9m45s
/ daliserver (push) Successful in 2m19s
/ forgejo (push) Successful in 6m1s
/ forgejo-runner (push) Successful in 1m32s
/ http-mqtt-bridge (push) Successful in 4m50s
/ keycloak-23 (push) Successful in 9m36s
/ linux-diversion-ath-regd-optional (push) Successful in 17m53s
/ lottieconverter (push) Successful in 57s
/ matterbridge (push) Successful in 3m52s
/ matrix-element-web (push) Failing after 41s
/ matrix-hydrogen (push) Failing after 33s
/ matrix.to (push) Successful in 6m9s
/ maubot (push) Successful in 4m32s
/ maubot-plugin-spaceapi (push) Successful in 2m6s
/ maubot-plugin-ultimaker (push) Successful in 2m7s
/ mautrix-signal (push) Successful in 1m6s
/ mautrix-telegram (push) Successful in 1m6s
/ mediawiki-extension-auth-remoteuser (push) Successful in 1m5s
/ mediawiki-extension-nativesvghandler (push) Successful in 1m3s
/ mediawiki-extension-openidconnect (push) Successful in 1m13s
/ mediawiki-extension-pluggableauth (push) Successful in 1m5s
/ mqtt2prometheus (push) Successful in 4m15s
/ mumble-web (push) Successful in 58s
/ mumble-web-data (push) Failing after 5m56s
/ mumble-web-proxy (push) Failing after 55s
/ prometheus-ipmi-exporter (push) Successful in 1m49s
/ prometheus-dnsbl-exporter (push) Successful in 1m32s
/ prometheus2influxdb (push) Successful in 34s
/ python3-mautrix (push) Successful in 1m15s
/ python3-telethon (push) Successful in 1m18s
/ repo.s3lph.me-apt-source (push) Successful in 33s
/ republik-feeder (push) Successful in 47s
/ woodpecker-agent (push) Successful in 2m16s
/ woodpecker-cli (push) Successful in 2m15s
This commit is contained in:
parent
4fe6ccd91c
commit
01f307a519
3 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
Package: __PKGNAME__
|
||||
Version: 0.2-1
|
||||
Version: 0.2-2
|
||||
Maintainer: __MAINTAINER__
|
||||
Section: web
|
||||
Priority: optional
|
||||
|
|
5
repo.s3lph.me-apt-source/debian.postinst
Executable file
5
repo.s3lph.me-apt-source/debian.postinst
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [[ "$1" == "configure" ]]; then
|
||||
apt update || true
|
||||
fi
|
|
@ -11,6 +11,7 @@ cp gitkabelsalatch-s3lph.sources build/pkgdir/etc/apt/sources.list.d/gitkabelsal
|
|||
cp gitkabelsalatch-s3lph.asc build/pkgdir/usr/share/keyrings/gitkabelsalatch-s3lph.asc
|
||||
cp debian.control build/pkgdir/DEBIAN/control
|
||||
cp debian.conffiles build/pkgdir/DEBIAN/conffiles
|
||||
cp debian.postinst build/pkgdir/DEBIAN/postinst
|
||||
cp debian.changelog "build/pkgdir/usr/share/doc/${PKGNAME}/changelog"
|
||||
cp debian.copyright "build/pkgdir/usr/share/doc/${PKGNAME}/copyright"
|
||||
|
||||
|
|
Loading…
Reference in a new issue