mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
11 lines
188 B
Bash
Executable file
11 lines
188 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
. /usr/share/yunohost/helpers.d/filesystem
|
|
|
|
backup_dir="${1}/conf/cron"
|
|
|
|
for f in $(ls -1B /etc/cron.d/yunohost*); do
|
|
ynh_backup "$f" "${backup_dir}/${f##*/}"
|
|
done
|