2008-08-14 16:12:11 +02:00
|
|
|
#!/bin/sh
|
2008-08-15 05:20:23 +02:00
|
|
|
## scripts/gajim.in
|
2004-11-25 20:27:09 +01:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2005 Yann Le Boulanger <asterix AT lagaule.org>
|
|
|
|
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
|
|
|
|
## Stefan Bethge <stefan AT lanpartei.de>
|
|
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
2004-11-25 20:27:09 +01:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## This file is part of Gajim.
|
2004-11-25 20:27:09 +01:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2004-11-25 20:27:09 +01:00
|
|
|
## it under the terms of the GNU General Public License as published
|
2008-08-15 05:20:23 +02:00
|
|
|
## by the Free Software Foundation; version 3 only.
|
2004-11-25 20:27:09 +01:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2004-11-25 20:27:09 +01:00
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-15 05:20:23 +02:00
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2004-11-25 20:27:09 +01:00
|
|
|
## GNU General Public License for more details.
|
2008-08-15 05:20:23 +02:00
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License
|
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
2004-11-25 20:27:09 +01:00
|
|
|
|
2009-02-17 13:29:54 +01:00
|
|
|
APP=`basename $0`
|
2008-08-14 21:17:53 +02:00
|
|
|
if test $(id -u) -eq 0; then
|
2009-02-17 13:29:54 +01:00
|
|
|
echo "You must not launch $APP as root, it is INSECURE"
|
2008-08-14 21:17:53 +02:00
|
|
|
exit 1
|
2004-11-25 20:27:09 +01:00
|
|
|
fi
|
|
|
|
|
2009-02-17 13:29:54 +01:00
|
|
|
[ "$APP" = "gajim-history-manager" ] && APP="history_manager"
|
|
|
|
|
2009-11-28 12:54:30 +01:00
|
|
|
cd "@GAJIM_SRCDIR@"
|
2009-11-28 12:54:41 +01:00
|
|
|
exec "@PYTHON@" -OO $APP.py "$@"
|