Rewrite launch script
This commit is contained in:
parent
f7e83af297
commit
230739bbb1
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/python3 -OO
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
if os.geteuid() == 0:
|
||||
sys.exit("You must not launch gajim as root, it is insecure.")
|
||||
|
||||
import gajim.gajim as g
|
||||
|
||||
g.GajimApplication().run(sys.argv)
|
Loading…
Reference in New Issue