2. Copy `simple_backup.env.sample` to `simple_backup.env` and edit it to your needs
2. Copy `simple_backup.env.sample` to `simple_backup.env` and set directories and destination
3. Add a crontab entry like `0 19 * * 1-5 /path/to/simple_backup.sh`
3. Add fstab entry to mount destination for instance for a NFS, add the following line to `/etc/fstab` : `//<serverip>/<directory> /media/user/backup cifs user,username=<user>,password=<password> 0 0 `, adapt every field between `<>` to your needs.
3. Add a crontab entry with command `crontab -e` like `30 18 * * * /path/to/simple_backup.sh`
4. Allow user to shutdown : `sudo visudo` and add : `user ALL=(root) NOPASSWD: /sbin/shutdown` at the end of the file, replacing 'user' by the username of the connected user.