mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-24 05:44:07 +00:00

a simple api call to simulate calendar event triggers takes a schedule, an optional number (default 10), an optional starttime (default 'now') and returns a list with unix timestamps, as well as humanly readable utc timestamps. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
21 lines
417 B
Makefile
21 lines
417 B
Makefile
include ../../../defines.mk
|
|
|
|
# for node independent, cluster-wide applicable, API endpoints
|
|
# ensure we do not conflict with files shipped by pve-cluster!!
|
|
PERLSOURCE= \
|
|
BackupInfo.pm \
|
|
MetricServer.pm \
|
|
Jobs.pm \
|
|
Ceph.pm
|
|
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: ${PERLSOURCE}
|
|
install -d ${PERLLIBDIR}/PVE/API2/Cluster
|
|
install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/API2/Cluster
|