| | 77 | == Secure the files == |
| | 78 | |
| | 79 | As the global config file ''7dtd.conf'' contains your Steam login data make sure it is only accessible to the root user: |
| | 80 | {{{ |
| | 81 | chown root.root /etc/7dtd.conf |
| | 82 | chmod 0600 /etc/7dtd.conf |
| | 83 | }}} |
| | 84 | Also make all other scripts only writable by root: |
| | 85 | {{{ |
| | 86 | chown root.root /etc/init.d/7dtd.sh |
| | 87 | chown root.root /etc/bash_completion.d/7dtd |
| | 88 | chown root.root /usr/local/bin/7dtd.sh |
| | 89 | chown root.root /usr/local/lib/7dtd -R |
| | 90 | chmod 0755 /etc/init.d/7dtd.sh |
| | 91 | chmod 0755 /etc/bash_completion.d/7dtd |
| | 92 | chmod 0755 /usr/local/bin/7dtd.sh |
| | 93 | chmod 0755 /usr/local/lib/7dtd -R |
| | 94 | }}} |
| | 95 | |