9 lines
211 B
Bash
9 lines
211 B
Bash
#!/bin/bash
|
|
|
|
export RESTIC_PASSWORD="8ung1e1!"
|
|
|
|
restic -r /mnt/resticbackups/home/akanealw init
|
|
restic -r /mnt/resticbackups/etc init
|
|
restic -r /mnt/resticbackups/opt init
|
|
restic -r /mnt/resticbackups/root init
|