|
|
|
#!/bin/sh
# only do remaining stuff if we're being called to configure the package
if [ "$1" != "configure" ]
then
exit 0
fi
if [ -x "/etc/init.d/915resolution" ]; then
update-rc.d 915resolution defaults 12 >/dev/null
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d 915resolution start || exit 0
else
/etc/init.d/915resolution start || exit 0
fi
fi
exit 0
| Results 1 - 1 |