- Duplicati: Fixed curl commands and migrated install to deb package - Jellyfin: Install failed due to 'missing' libjemalloc, this will now be installed earlier in the process
7 lines
249 B
Bash
7 lines
249 B
Bash
#!/bin/bash
|
|
duplicati-server-util --server-datafolder /var/lib/Duplicati change-password
|
|
systemctl stop duplicati
|
|
echo "SETTINGS_ENCRYPTION_KEY=\"$(openssl rand -hex 32)\"" >> /etc/default/duplicati
|
|
systemctl daemon-reload
|
|
systemctl start duplicati
|