11 | | - Job in {{{cron.daily}}} |
12 | | - Copies one backup file each day to {{{v:\database-backups}}} |
13 | | - At the end of each month, all but one of the daily files from that month is supposed to be removed. I don't think this is happening, though. |
| 11 | Here are the contents of the `/etc/network/interfaces` file: |
| 12 | |
| 13 | {{{ |
| 14 | # This file describes the network interfaces available on your system |
| 15 | # and how to activate them. For more information, see interfaces(5). |
| 16 | |
| 17 | # The loopback network interface |
| 18 | auto lo |
| 19 | iface lo inet loopback |
| 20 | |
| 21 | # The primary network interface |
| 22 | auto enp0s17 |
| 23 | iface enp0s17 inet static |
| 24 | address 10.156.254.207 |
| 25 | netmask 255.255.255.128 |
| 26 | network 10.156.254.128 |
| 27 | broadcast 10.156.254.255 |
| 28 | gateway 10.156.254.129 |
| 29 | # dns-* options are implemented by the resolvconf package, if installed |
| 30 | dns-nameservers 10.147.126.165 |
| 31 | dns-search xuhl-tr.nhs.uk |
| 32 | |
| 33 | }}} |