spiegel-keyman/linux/keyman-config/debian/python3-keyman-config.postinst
glasseyes 910d6780ec debconf question for making keyman dirs mode 777
This allows all users to install keyboards and only the
user that installed one to uninstall it

more setup instructions in README.md
2018-09-01 11:43:34 +07:00

13 lines
299 B
Bash

#!/bin/sh -e
# Source debconf library.
. /usr/share/debconf/confmodule
#DEBHELPER#
db_get python3-keyman-config/keymandir
if [ "$RET" = "true" ]; then
chmod 00777 /usr/local/share/keyman
chmod 00777 /usr/local/share/doc/keyman
chmod 00777 /usr/local/share/fonts/keyman
fi