5bc5aa05be
git-svn-id: https://svn.code.sf.net/p/qlscribe/svn/trunk@116 cac9541e-1b8d-4bfa-827e-589bba606050
15 lines
262 B
Bash
15 lines
262 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "configure" ] ; then
|
|
cp -f /usr/share/qlscribe/lightscribe.conf /etc/dbus-1/system.d/
|
|
cp -f /usr/share/qlscribe/org.lightscribe.Manager.service /usr/share/dbus-1/system-services/
|
|
/etc/init.d/dbus reload
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|
|
|