15 lines
246 B
Bash
Executable file
15 lines
246 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$1" == "configure" ]]; then
|
|
|
|
if ! getent group ydotool >/dev/null; then
|
|
groupadd --system ydotool
|
|
fi
|
|
|
|
deb-systemd-helper enable ydotoold.service
|
|
deb-systemd-invoke restart ydotoold.service
|
|
|
|
fi
|
|
|