mirror of
https://github.com/YunoHost-Apps/restic_ynh.git
synced 2024-09-03 20:16:22 +02:00
Fix paths in installed scripts
This commit is contained in:
parent
daad20e8ba
commit
295c7373e4
5 changed files with 6 additions and 6 deletions
|
@ -13,7 +13,7 @@ RESTIC_PATH=$(yunohost app setting {{ app }} backup_path)
|
|||
RESTIC_PASSWORD="$(yunohost app setting {{ app }} passphrase)"
|
||||
RESTIC_REPOSITORY_BASE=sftp://$RESTIC_SERVER_USER@$RESTIC_SERVER:$RESTIC_SERVER_PORT/$RESTIC_PATH/
|
||||
|
||||
RESTIC_COMMAND=/usr/local/bin/{{ app }}
|
||||
RESTIC_COMMAND={{ install_dir }}/{{ app }}
|
||||
LOGFILE=/var/log/restic_backup_{{ app }}.log
|
||||
ERRFILE=/var/log/restic_backup_{{ app }}.err
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ RESTIC_PATH=$(yunohost app setting {{ app }} backup_path)
|
|||
RESTIC_PASSWORD="$(yunohost app setting {{ app }} passphrase)"
|
||||
RESTIC_REPOSITORY_BASE=sftp://$RESTIC_SERVER_USER@$RESTIC_SERVER:$RESTIC_SERVER_PORT/$RESTIC_PATH/
|
||||
|
||||
RESTIC_COMMAND=/usr/local/bin/{{ app }}
|
||||
RESTIC_COMMAND={{ install_dir }}/{{ app }}
|
||||
|
||||
do_check() {
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ After=network.target
|
|||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/local/bin/backup-with-__APP__
|
||||
ExecStartPost=/opt/yunohost/__APP__/restic_log___APP__
|
||||
ExecStart=__INSTALL_DIR__/backup-with-__APP__
|
||||
ExecStartPost=__INSTALL_DIR__/restic_log___APP__
|
||||
User=__APP__
|
||||
Group=__APP__
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ After=network.target
|
|||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=__INSTALL_DIR__/check-__APP__
|
||||
ExecStartPost=/opt/yunohost/__APP__/restic_check_log___APP__ 0
|
||||
ExecStartPost=__INSTALL_DIR__/restic_check_log___APP__ 0
|
||||
User=__APP__
|
||||
Group=__APP__
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ After=network.target
|
|||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=__INSTALL_DIR__/check-__APP__ "1"
|
||||
ExecStartPost=/opt/yunohost/__APP__/restic_check_log___APP__ 1
|
||||
ExecStartPost=__INSTALL_DIR__/restic_check_log___APP__ 1
|
||||
User=__APP__
|
||||
Group=__APP__
|
||||
|
||||
|
|
Loading…
Reference in a new issue