mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-10 01:18:06 +03:00
823314c7f4
Signed-off-by: Lukas Wagner <l.wagner@proxmox.com> Tested-by: Gabriel Goller <g.goller@proxmox.com> Reviewed-by: Gabriel Goller <g.goller@proxmox.com> Tested-by: Maximiliano Sandoval <m.sandoval@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
include ../defines.mk
|
|
|
|
NOTIFICATION_TEMPLATES= \
|
|
default/gc-err-body.txt.hbs \
|
|
default/gc-ok-body.txt.hbs \
|
|
default/gc-err-subject.txt.hbs \
|
|
default/gc-ok-subject.txt.hbs \
|
|
default/package-updates-body.txt.hbs \
|
|
default/package-updates-subject.txt.hbs \
|
|
default/prune-err-body.txt.hbs \
|
|
default/prune-ok-body.txt.hbs \
|
|
default/prune-err-subject.txt.hbs \
|
|
default/prune-ok-subject.txt.hbs \
|
|
default/sync-err-body.txt.hbs \
|
|
default/sync-ok-body.txt.hbs \
|
|
default/sync-err-subject.txt.hbs \
|
|
default/sync-ok-subject.txt.hbs \
|
|
default/test-body.txt.hbs \
|
|
default/test-body.html.hbs \
|
|
default/test-subject.txt.hbs \
|
|
default/verify-err-body.txt.hbs \
|
|
default/verify-ok-body.txt.hbs \
|
|
default/verify-err-subject.txt.hbs \
|
|
default/verify-ok-subject.txt.hbs \
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
install:
|
|
install -dm755 $(DESTDIR)$(DATAROOTDIR)/proxmox-backup/templates/default
|
|
$(foreach i,$(NOTIFICATION_TEMPLATES), \
|
|
install -m644 $(i) $(DESTDIR)$(DATAROOTDIR)/proxmox-backup/templates/$(i) ;)
|