|
Revision 362, 0.7 kB
(checked in by asterix, 4 years ago)
|
|
runCore.py is now name gajim.py
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | ## gajim |
|---|
| 3 | ## |
|---|
| 4 | ## Gajim Team: |
|---|
| 5 | ## - Yann Le Boulanger <asterix@lagaule.org> |
|---|
| 6 | ## - Vincent Hanquez <tab@snarc.org> |
|---|
| 7 | ## |
|---|
| 8 | ## Copyright (C) 2003-2005 Gajim Team |
|---|
| 9 | ## |
|---|
| 10 | ## This program is free software; you can redistribute it and/or modify |
|---|
| 11 | ## it under the terms of the GNU General Public License as published |
|---|
| 12 | ## by the Free Software Foundation; version 2 only. |
|---|
| 13 | ## |
|---|
| 14 | ## This program is distributed in the hope that it will be useful, |
|---|
| 15 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | ## GNU General Public License for more details. |
|---|
| 18 | |
|---|
| 19 | if [ `id -u` -eq 0 ]; then |
|---|
| 20 | echo "You must not launch Gajim as root, it is DANGEROUS" |
|---|
| 21 | exit 0 |
|---|
| 22 | fi |
|---|
| 23 | |
|---|
| 24 | cd PREFIX/share/gajim |
|---|
| 25 | python gajim.py |
|---|