blob: 31c7766d1fa2562bddd2b13657c38efe5c2fdd20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install(){
echo "Creating user augenkrebs for use with the systemd service"
useradd -u 42 -m augenkrebs &>/dev/null
echo "If you want to use the systemd service in /usr/lib/systemd/system,"
echo "please edit it beforehand to include the log in manager of your"
echo "choice as target. "
echo "You will also probably need to create and edit the X startup file"
echo "of the augenkrebs user."
}
post_remove(){
userdel augenkrebs &>/dev/null
}
|