2005-07-20 09:55:27 +02:00
|
|
|
#!/bin/sh
|
2008-08-15 05:20:23 +02:00
|
|
|
## scripts/gajim-remote.in
|
2005-07-20 09:55:27 +02:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2006 Yann Leboulanger <asterix AT lagaule.org>
|
|
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
2005-07-20 09:55:27 +02:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2005-07-20 09:55:27 +02: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.
|
2005-07-20 09:55:27 +02:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2005-07-20 09:55:27 +02: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
|
2005-07-20 09:55:27 +02: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/>.
|
|
|
|
##
|
2005-07-20 09:55:27 +02:00
|
|
|
|
2008-08-14 21:17:53 +02:00
|
|
|
if test $(id -u) -eq 0; then
|
2005-07-20 09:55:27 +02:00
|
|
|
echo "You must not launch gajim-remote as root, it is INSECURE"
|
2008-08-14 21:17:53 +02:00
|
|
|
exit 1
|
2005-07-20 09:55:27 +02:00
|
|
|
fi
|
|
|
|
|
2006-11-29 09:07:41 +01:00
|
|
|
datadir=@DATADIR@
|
|
|
|
PYTHON_EXEC=@PYTHON@
|
|
|
|
|
|
|
|
cd ${datadir}/gajim/src
|
|
|
|
export PYTHONPATH="$PYTHONPATH:@LIBDIR@/gajim"
|
|
|
|
exec ${PYTHON_EXEC} -OO gajim-remote.py "$@"
|