Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gajim.in « scripts - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 178d69b16c0a42021e197f62103cd6f73339f47c (plain)
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
#!/bin/sh
## scripts/gajim.in
##
## 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>
##
## This file is part of Gajim.
##
## Gajim 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; version 3 only.
##
## Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.
##

APP=`basename $0`
if test $(id -u) -eq 0; then
	echo "You must not launch $APP as root, it is INSECURE"
	exit 1
fi

[ "$APP" = "gajim-history-manager" ] && APP="history_manager"

export datadir=@DATADIR@/gajim
PYTHON_EXEC=@PYTHON@

cd ${datadir}/src
exec ${PYTHON_EXEC} -OO $APP.py "$@"