blob: 837b46b7b83fbf16eaf1ed253b0ed5846450f29d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
set -e
if [ "$1" = 'configure' ]; then
# add unprivileged user for the apt methods
adduser --force-badname --system --home /nonexistent \
--no-create-home --quiet _apt || true
fi
#DEBHELPER#
|