14 lines
335 B
Bash
14 lines
335 B
Bash
DEST=${1:-/etc/skel}
|
|
|
|
# allow rmadison -u devuan
|
|
conf_print_devscripts() {
|
|
cat <<-EOF
|
|
RMADISON_URL_MAP_DEVUAN=https://api.pkginfo.devuan.org/madison
|
|
EOF
|
|
}
|
|
conf_print_devscripts | tee ${DEST}/.devscripts
|
|
|
|
# add autopkgtest to pbuildrc
|
|
|
|
sudo ln -sf /usr/share/doc/pbuilder/examples/B20autopkgtest /srv/pbuilder/hook.d/B20autopkgtest
|