/usr/bin/presage_dbus_service is in presage-dbus 0.8.8-1ubuntu3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | #! /usr/bin/python
##########
# Presage, an extensible predictive text entry system
# ------------------------------------------------------
# Copyright (C) 2010 David Pellicer <dpellicer@warp.es>
# Copyright (C) 2010 Matteo Vescovi <matteo.vescovi@yahoo.co.uk>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import optparse
def stop_service():
import presage_dbus_service
presage_dbus_service.stop()
def start_service():
import presage_dbus_service
presage_dbus_service.start()
if __name__ == '__main__':
parser = optparse.OptionParser()
parser.add_option ("-v", "--version", action="store_true",
dest="show_version", default=False,
help="show version and exit")
parser.add_option ("-r", "--restart", action="store_true",
dest="should_restart", default=False,
help="restart presage predictive service")
parser.add_option ("-s", "--start", action="store_true",
dest="should_start", default=False,
help="start presage predictive service")
parser.add_option ("-t", "--stop", action="store_true",
dest="should_stop", default=False,
help="stop presage predictive service")
options, args = parser.parse_args()
if options.should_stop:
stop_service()
elif options.should_start:
start_service()
elif options.should_restart:
stop_service()
start_service()
else:
parser.print_help()
|