/usr/share/debci/bin/debci-update is in debci 1.7.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh
set -eu
arch_list=$(debci-config --values-only arch_list)
suite_list=$(debci-config --values-only suite_list)
debci-expire
for suite in $suite_list; do
for arch in $arch_list; do
debci-generate-index --arch="$arch" --suite="$suite" "$@"
done
done
debci-generate-html
debci-hint
|