Rev 31 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | magnus | 1 | pyscrabble for Debian |
2 | --------------------- |
||
3 | |||
4 | My assumption is that most users don't need or want to run their own |
||
3 | magnus | 5 | server. Therefore the PyScrabble server is in a separate package that |
6 | installs it as a system daemon. By default the server runs under a |
||
31 | magnus | 7 | dedicated user account, created on installation. It should not be run |
8 | directly from the command line, only with the help of the init script. |
||
2 | magnus | 9 | |
3 | magnus | 10 | The original code is modified so that instead of |
11 | ~/.config/pyscrabble/, the server reads its configuration from files |
||
12 | in /etc/pyscrabble/, stores its database in /var/lib/pyscrabble, and |
||
13 | logs to /var/log/pyscrabble/pyscrabble.log. The log is not |
||
14 | automatically rotated, because the server can't currently be told to |
||
15 | reopen the log, and restarting it kills all client sessions and |
||
16 | ongoing games. |
||
17 | |||
18 | For the same reason, the server is not restarted when upgraded. The |
||
19 | administrator should notify the users and restart the server at the |
||
20 | earliest opportunity. |
||
21 | |||
33 | magnus | 22 | After starting the server for the first time, you should immediately |
23 | register a user account, as the first user is automatically made |
||
24 | administrator. |
||
25 | |||
26 | -- Magnus Holmgren <holmgren@debian.org>, Mon, 25 Apr 2011 14:00:03 +0200 |