8 lines
196 B
Plaintext
Executable File
8 lines
196 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# Creating a backup of plex configuration
|
|
|
|
cd /config
|
|
tar -cvzf /pms.tar.gz Library
|
|
|
|
rclone move /pms.tar.gz $BACKUP --verbose --transfers 4 --checkers 20 --stats 10s
|