You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
475 B
Bash
18 lines
475 B
Bash
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e;
|
||
|
|
||
|
# Arguments
|
||
|
path="$1";
|
||
|
name="$2";
|
||
|
|
||
|
# Variables
|
||
|
dir="$(dirname "$path")";
|
||
|
base="$(basename "$path")";
|
||
|
dest={{ backups_files_directory | quote }}"/$name.tar.gpg";
|
||
|
|
||
|
# Execution
|
||
|
tar -C "$dir" -cf "$dest" "$base" | buffer -m 128M -s 128K | gpg --quiet --no-verbose --encrypt --recipient 73D09948B2392D688A45DC8393E1BD26F6B02FB7 --trust-model always > "$dest";
|
||
|
chmod u+r-wx,g+r-wx,o+r-wx "$dest";
|
||
|
{{ global_helper_directory | quote }}/backup_rename.sh "$dest";
|