blob: aae58c3ec00c651bfb4c541a744122a5d40f0825 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if groups | grep games > /dev/null 2>&1 ; then
ryzom_sync
exec ryzom_client_patcher
exec ryzom_client
else
echo "you need to be in games group to run ryzom"
exit 1
fi
|