2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Fix debian packaging for confluent

This commit is contained in:
Jarrod Johnson 2023-09-18 15:48:38 -04:00
parent 8f80add0f1
commit 47fc233cce

View File

@ -51,8 +51,8 @@ head -n -1 debian/control > debian/control1
mv debian/control1 debian/control
cat > debian/postinst << EOF
if ! getent passwd confluent > /dev/null; then
useradd -r affluent -d /var/lib/affluent -s /bin/nologin
mkdir /etc/confluent
useradd -r confluent -d /var/lib/confluent -s /usr/sbin/nologin
mkdir -p /etc/confluent
chown confluent /etc/confluent
fi
EOF