├── .gitattributes ├── .github └── workflows │ ├── project_auto_add_issue.yml │ └── pscheduler-workflow.yml ├── .gitignore ├── .gitmodules ├── Cython ├── Cython-0.29.21.tar.gz ├── Makefile └── unibuild-packaging │ └── rpm │ └── Cython.spec ├── Dockerfile ├── I2util └── unibuild-packaging │ └── rpm │ └── I2util.spec ├── LICENSE ├── Makefile ├── README.md ├── docker-build.sh ├── docker-compose.yml ├── docs ├── Makefile ├── README.md ├── archiver-rabbitmq.tex ├── archiver-syslog.tex ├── developers-guide.tex ├── dirtree │ ├── Makefile │ └── dirtree.zip ├── json-samples │ ├── archiver-input.json │ └── simplestream-task.json ├── json.tex ├── limits.tex ├── misc.tex ├── pscheduler-tex.tex ├── test-clock.tex ├── test-dns.tex ├── test-idle.tex ├── test-rtt.tex ├── test-simplestream.tex ├── test-trace.tex └── values.tex ├── drop-in ├── Makefile ├── drop-in-1.6.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── drop-in.spec ├── dublin-traceroute ├── Makefile ├── dublin-traceroute-0.4.2.tar.gz └── unibuild-packaging │ ├── deb │ ├── README.md │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dublin-traceroute.dirs │ ├── dublin-traceroute.install │ ├── dublin-traceroute.postinst │ ├── libdublintraceroute-dev.dirs │ ├── libdublintraceroute-dev.install │ ├── libdublintraceroute1.dirs │ ├── libdublintraceroute1.install │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── dublin-traceroute.spec ├── ethr ├── .gitignore ├── Makefile ├── ethr-1.0.0.tar.gz └── unibuild-packaging │ ├── 00-ipv6.patch │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── patches │ │ └── series │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── ethr.spec ├── ethr0 ├── Makefile ├── ethr-0.2.1.tar.gz ├── ethrc.log └── unibuild-packaging │ ├── common-golang-sys.patch │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── patches │ │ └── series │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── ethr0.spec ├── httpd-firewall ├── Makefile └── unibuild-packaging │ └── rpm │ └── httpd-firewall.spec ├── httpd-wsgi-socket ├── Makefile └── unibuild-packaging │ └── rpm │ └── httpd-wsgi-socket.spec ├── iperf ├── Makefile ├── iperf-2.1.9.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── clean │ ├── control │ ├── copyright │ ├── iperf.dirs │ ├── iperf.doc-base │ ├── iperf.docs │ ├── iperf.install │ ├── iperf.lintian-overrides │ ├── patches │ │ ├── 003-fix-hyphen-used-as-minus-sign.patch │ │ ├── 004-fix-man-break-lines.patch │ │ ├── 013-delete-service.patch │ │ ├── 017-spelling-errors │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ └── lintian-overrides │ ├── ufw │ │ └── iperf │ └── watch │ └── rpm │ └── iperf.spec ├── iperf3 ├── Makefile ├── README.md ├── iperf3-3.19.1.tar.gz └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── changelog │ ├── compat-Debian-11 │ ├── compat-Debian-12 │ ├── compat-Ubuntu-20 │ ├── compat-Ubuntu-22 │ ├── compat-Ubuntu-24 │ ├── control-Debian-11 │ ├── control-Debian-12 │ ├── control-Ubuntu-20 │ ├── control-Ubuntu-22 │ ├── control-Ubuntu-24 │ ├── copyright │ ├── gbp.conf │ ├── iperf3-ssl3.docs │ ├── iperf3-ssl3.install │ ├── iperf3-ssl3.installdirs │ ├── iperf3-ssl3.manpages │ ├── iperf3.docs │ ├── iperf3.install │ ├── iperf3.installdirs │ ├── iperf3.manpages │ ├── libiperf-dev-ssl3.docs │ ├── libiperf-dev-ssl3.install │ ├── libiperf-dev-ssl3.manpages │ ├── libiperf-dev.docs │ ├── libiperf-dev.install │ ├── libiperf-dev.manpages │ ├── libiperf0-ssl3.docs │ ├── libiperf0-ssl3.install │ ├── libiperf0-ssl3.lintian-overrides │ ├── libiperf0.docs │ ├── libiperf0.install │ ├── libiperf0.lintian-overrides │ ├── license-reconcile.yml │ ├── not-installed │ ├── patches │ │ ├── build │ │ └── series │ ├── rules-Debian-11 │ ├── rules-Debian-12 │ ├── rules-Ubuntu-20 │ ├── rules-Ubuntu-22 │ ├── rules-Ubuntu-24 │ ├── source │ │ ├── format │ │ └── lintian-overrides │ ├── tests │ │ ├── control │ │ └── task │ └── watch │ └── rpm │ └── iperf3.spec ├── jq ├── Makefile ├── jq-1.7.1.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── jq.install │ ├── libjq-dev.install │ ├── libjq1.install │ ├── patches │ │ ├── series │ │ └── unit-tests │ ├── rules │ ├── source │ │ └── format │ └── watch │ └── rpm │ └── jq.spec ├── libtins ├── .gitignore ├── Makefile ├── libtins-4.2.tar.gz └── unibuild-packaging │ └── rpm │ └── libtins.spec ├── nuttcp ├── Makefile ├── nuttcp-8.2.2.tar.gz └── unibuild-packaging │ ├── deb │ ├── README.Debian │ ├── README.source │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── docs │ ├── examples │ ├── gbp.conf │ ├── patches │ │ ├── 00-Makefile │ │ ├── 01-Man │ │ ├── 02-xinetd.d │ │ ├── 03-IPv6 │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch │ └── rpm │ └── nuttcp.spec ├── oniguruma ├── Makefile ├── oniguruma-6.9.6.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── libonig-dev.doc-base │ ├── libonig-dev.docs │ ├── libonig-dev.examples │ ├── libonig-dev.install │ ├── libonig5-dbg.dirs │ ├── libonig5.install │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── oniguruma.spec ├── owamp └── unibuild-packaging │ ├── deb │ └── changelog │ └── rpm │ └── owamp.spec ├── paris-traceroute ├── Makefile ├── README.md ├── fetch-sources ├── paris-traceroute-0.93.ps.tar.gz ├── paris-traceroute-1.0.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── libparistraceroute-dev.dirs │ ├── libparistraceroute-dev.install │ ├── libparistraceroute1.dirs │ ├── libparistraceroute1.install │ ├── paris-traceroute.dirs │ ├── paris-traceroute.install │ ├── paris-traceroute.postinst │ ├── patches │ │ ├── 01-version │ │ └── series │ ├── rules │ └── source │ │ └── format │ ├── paris-traceroute-00-mda-bounds.patch │ ├── paris-traceroute-01-buffer-overrun.patch │ └── rpm │ └── paris-traceroute.spec ├── postgresql-init ├── Makefile └── unibuild-packaging │ └── rpm │ └── postgresql-init.spec ├── postgresql-load ├── Makefile └── postgresql-load │ ├── Makefile │ ├── postgresql-load │ ├── postgresql-load.1 │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── postgresql-load.spec ├── pscheduler-account ├── .gitattributes ├── LICENSE ├── Makefile └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── postinst │ ├── postrm │ ├── rules │ ├── source │ │ └── format │ └── tests │ │ ├── control │ │ └── user │ └── rpm │ └── pscheduler-account.spec ├── pscheduler-archiver-bitbucket ├── .gitattributes ├── Makefile └── bitbucket │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── archiver │ │ └── control │ └── triggers │ └── rpm │ └── pscheduler-archiver-bitbucket.spec ├── pscheduler-archiver-esmond ├── .gitattributes ├── Makefile ├── esmond │ ├── LICENSE │ ├── Makefile │ ├── __init__.py │ ├── archive │ ├── data-is-valid │ ├── enumerate │ ├── esmond_util.py │ └── unibuild-packaging │ │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tests │ │ │ ├── archiver │ │ │ └── control │ │ └── triggers │ │ └── rpm │ │ └── pscheduler-archiver-esmond.spec └── tests │ ├── data_is_valid_test.py │ ├── enumerate_test.py │ └── esmond_util_test.py ├── pscheduler-archiver-failer ├── .gitattributes ├── Makefile └── failer │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── archiver │ │ └── control │ └── triggers │ └── rpm │ └── pscheduler-archiver-failer.spec ├── pscheduler-archiver-http ├── .gitattributes ├── Makefile ├── http │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ ├── http.txt │ └── unibuild-packaging │ │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tests │ │ │ ├── archiver │ │ │ ├── control │ │ │ └── server.py │ │ └── triggers │ │ └── rpm │ │ └── pscheduler-archiver-http.spec └── tests │ ├── LICENSE │ ├── Makefile │ ├── data_is_valid_test.py │ └── enumerate_test.py ├── pscheduler-archiver-kafka ├── .gitattributes ├── .gitignore ├── Makefile └── kafka │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ ├── example-archiver-config.json │ ├── kafka.txt │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── archiver │ │ └── control │ └── triggers │ └── rpm │ └── pscheduler-archiver-kafka.spec ├── pscheduler-archiver-postgresql ├── .gitattributes ├── Makefile └── postgresql │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ ├── postgresql.txt │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── archiver │ │ └── control │ └── triggers │ └── rpm │ └── pscheduler-archiver-postgresql.spec ├── pscheduler-archiver-rabbitmq ├── .gitattributes ├── Makefile ├── rabbitmq │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── patches │ │ │ └── series │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tests │ │ │ ├── archiver │ │ │ └── control │ │ └── triggers │ │ └── rpm │ │ └── pscheduler-archiver-rabbitmq.spec └── tests │ ├── LICENSE │ ├── Makefile │ ├── data_is_valid_test.py │ └── enumerate_test.py ├── pscheduler-archiver-snmptrap ├── .gitattributes ├── Makefile └── snmptrap │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ ├── snmptrap.txt │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── archiver │ │ └── control │ └── triggers │ └── rpm │ └── pscheduler-archiver-snmptrap.spec ├── pscheduler-archiver-syslog ├── .gitattributes ├── Makefile ├── syslog │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tests │ │ │ ├── archiver │ │ │ └── control │ │ └── triggers │ │ └── rpm │ │ └── pscheduler-archiver-syslog.spec └── tests │ ├── LICENSE │ ├── Makefile │ ├── data_is_valid_test.py │ └── enumerate_test.py ├── pscheduler-archiver-tcp ├── .gitattributes ├── Makefile ├── tcp │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ ├── tcp.txt │ └── unibuild-packaging │ │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tests │ │ │ ├── archiver │ │ │ ├── control │ │ │ └── server.py │ │ └── triggers │ │ └── rpm │ │ └── pscheduler-archiver-tcp.spec └── tests │ ├── LICENSE │ ├── Makefile │ ├── data_is_valid_test.py │ └── enumerate_test.py ├── pscheduler-archiver-udp ├── .gitattributes ├── Makefile ├── tests │ ├── LICENSE │ ├── Makefile │ ├── data_is_valid_test.py │ └── enumerate_test.py └── udp │ ├── LICENSE │ ├── Makefile │ ├── archive │ ├── data-is-valid │ ├── enumerate │ ├── udp.txt │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── archiver │ │ ├── control │ │ └── server.py │ └── triggers │ └── rpm │ └── pscheduler-archiver-udp.spec ├── pscheduler-bundle-extras ├── .gitattributes ├── .gitignore ├── Makefile ├── Makefile-package └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control-bottom │ ├── control-top │ ├── copyright │ ├── gbp.conf │ ├── rules │ └── source │ │ └── format │ └── rpm │ ├── pscheduler-bundle-extras.spec-bottom │ └── pscheduler-bundle-extras.spec-top ├── pscheduler-bundle-full ├── .gitattributes ├── .gitignore ├── Makefile ├── Makefile-package └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control-bottom │ ├── control-top │ ├── copyright │ ├── gbp.conf │ ├── rules │ ├── source │ │ └── format │ └── tests │ │ ├── archivers │ │ ├── control │ │ ├── tests │ │ └── tools │ └── rpm │ ├── pscheduler-bundle-full.spec-bottom │ └── pscheduler-bundle-full.spec-top ├── pscheduler-bundle-minimal ├── .gitattributes ├── Makefile ├── Makefile-package └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control-bottom │ ├── control-top │ ├── copyright │ ├── gbp.conf │ ├── rules │ └── source │ │ └── format │ └── rpm │ ├── .gitignore │ ├── pscheduler-bundle-minimal.spec-bottom │ └── pscheduler-bundle-minimal.spec-top ├── pscheduler-bundle-obsolete ├── .gitattributes ├── .gitignore ├── Makefile ├── Makefile-package └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control-bottom │ ├── control-top │ ├── copyright │ ├── gbp.conf │ ├── rules │ └── source │ │ └── format │ └── rpm │ ├── pscheduler-bundle-obsolete.spec-bottom │ └── pscheduler-bundle-obsolete.spec-top ├── pscheduler-bundle-snmp ├── .gitattributes ├── .gitignore ├── Makefile ├── Makefile-package └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control-bottom │ ├── control-top │ ├── copyright │ ├── gbp.conf │ ├── rules │ └── source │ │ └── format │ └── rpm │ ├── pscheduler-bundle-snmp.spec-bottom │ └── pscheduler-bundle-snmp.spec-top ├── pscheduler-context-changefail ├── .gitattributes ├── Makefile └── changefail │ ├── LICENSE │ ├── Makefile │ ├── change │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-context-changefail.spec ├── pscheduler-context-changenothing ├── .gitattributes ├── Makefile └── changenothing │ ├── LICENSE │ ├── Makefile │ ├── change │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-context-changenothing.spec ├── pscheduler-context-linuxnns ├── .gitattributes ├── Makefile └── linuxnns │ ├── LICENSE │ ├── Makefile │ ├── change │ ├── change-secure │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── sudoers │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-context-linuxnns.spec ├── pscheduler-context-linuxvrf ├── .gitattributes ├── Makefile └── linuxvrf │ ├── LICENSE │ ├── Makefile │ ├── change │ ├── change-secure │ ├── data-is-valid │ ├── enumerate │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── sudoers │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-context-linuxvrf.spec ├── pscheduler-core ├── .gitattributes ├── Makefile └── pscheduler-core │ ├── LICENSE │ ├── Makefile │ ├── archiving-summary │ ├── bash_completion.raw │ ├── batch │ ├── cancel │ ├── clock │ ├── diags.raw │ ├── env │ ├── internal.raw │ ├── list.raw │ ├── metrics │ ├── monitor │ ├── nothing │ ├── ping │ ├── plot-schedule │ ├── plugins │ ├── pscheduler.raw │ ├── result │ ├── schedule │ ├── task │ ├── troubleshoot │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── clean │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── patches │ │ │ ├── diags.patch │ │ │ └── series │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── tests │ │ │ ├── control │ │ │ ├── diags │ │ │ ├── internal-list │ │ │ ├── internal-nothing │ │ │ ├── metrics │ │ │ └── schedule │ └── rpm │ │ └── pscheduler-core.spec │ ├── validate-limits.raw │ ├── version │ └── watch ├── pscheduler-docs ├── .gitattributes ├── Makefile └── pscheduler-docs │ ├── LICENSE │ ├── Makefile │ ├── api │ └── api-example │ ├── limit-examples │ ├── Makefile │ ├── README │ ├── classification-simple │ ├── general-my-organization │ ├── general-reject-all-runs │ ├── general-reject-all-tasks │ ├── identifier-always │ ├── identifier-hint │ ├── identifier-ip-cidr-list │ ├── identifier-ip-cidr-list-url │ ├── identifier-ip-cymru-bogon │ ├── identifier-ip-reverse-dns │ ├── identifier-localif │ ├── priority-basic │ └── rewrite-basic │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── pscheduler-docs.spec ├── pscheduler-jq-library ├── .gitattributes ├── Makefile └── pscheduler-jq-library │ ├── LICENSE │ ├── Makefile │ ├── iso8601.jq │ ├── si.jq │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── pscheduler-jq-library.spec ├── pscheduler-minimal-marker ├── .gitattributes ├── LICENSE ├── Makefile └── pscheduler-minimal-marker │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── pscheduler-minimal-marker.spec ├── pscheduler-rpm ├── .gitattributes ├── LICENSE ├── Makefile └── unibuild-packaging │ └── rpm │ └── pscheduler-rpm.spec ├── pscheduler-server ├── .gitattributes ├── Makefile └── pscheduler-server │ ├── LICENSE │ ├── api-server │ ├── Makefile │ ├── pscheduler-api-server.conf.raw │ ├── pscheduler-api-server.wsgi.raw │ ├── pschedulerapiserver │ │ ├── Makefile │ │ ├── __init__.py.raw │ │ ├── access.py │ │ ├── address.py │ │ ├── admin.py │ │ ├── archivers.py │ │ ├── args.py │ │ ├── contexts.py │ │ ├── dbcursor.py │ │ ├── debug.py.raw │ │ ├── hints.py │ │ ├── json.py │ │ ├── limitproc.py │ │ ├── limits.py │ │ ├── log.py │ │ ├── response.py │ │ ├── runs.py │ │ ├── schedule.py │ │ ├── stat.py │ │ ├── tasks.py │ │ ├── tests.py │ │ ├── tools.py │ │ └── util.py │ └── runserver.py │ ├── daemons │ ├── Makefile │ ├── archiver.raw │ ├── config-template.raw │ ├── debug.raw │ ├── pause.raw │ ├── resume.raw │ ├── runner │ ├── scheduler │ ├── service-template.raw │ ├── threads │ └── ticker │ ├── database │ ├── Makefile │ ├── README-tables │ ├── README.md │ ├── archive_default.sql │ ├── archiver.sql │ ├── archiving.sql │ ├── auth_key.sql │ ├── auth_key_type.sql │ ├── boot.sql │ ├── configurables.sql │ ├── context.sql │ ├── control.sql │ ├── cron.sql │ ├── database-drop.sql.raw │ ├── database.sql.raw │ ├── db-change-password.raw │ ├── db-connections │ ├── db-reset.raw │ ├── db-update.raw │ ├── external_program.sql │ ├── heartbeat.sql │ ├── http_ops.sql │ ├── http_queue.sql │ ├── json_validate.sql │ ├── key.raw │ ├── pg_hba.conf │ ├── postamble.sql │ ├── preamble.sql.raw │ ├── priority.sql │ ├── psql.raw │ ├── purge-runs.raw │ ├── requester.sql │ ├── run.sql │ ├── run_latest.sql │ ├── run_state.sql │ ├── schedule.sql │ ├── scheduling_class.sql │ ├── table_version.sql │ ├── task.sql │ ├── test.sql │ ├── ticker.sql │ ├── tool.sql │ ├── utilities-super.sql.raw │ ├── utilities.sql │ └── warmboot.raw │ ├── unibuild-packaging │ ├── deb │ │ ├── README │ │ ├── changelog │ │ ├── clean │ │ ├── compat │ │ ├── config │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── install │ │ ├── logging │ │ │ ├── logrotate.d │ │ │ │ └── pscheduler-server │ │ │ └── rsyslog.d │ │ │ │ └── pscheduler-server.conf │ │ ├── patches │ │ │ ├── apache2.patch │ │ │ ├── backup.patch │ │ │ ├── db-change-password.patch │ │ │ ├── db-reset.patch │ │ │ ├── db-udpate.patch │ │ │ ├── python35 │ │ │ ├── series │ │ │ └── warmboot.patch │ │ ├── postinst │ │ ├── postrm │ │ ├── prerm │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── sudoers │ │ ├── tests │ │ │ ├── backup │ │ │ ├── control │ │ │ ├── database │ │ │ ├── debug │ │ │ ├── hostname │ │ │ ├── logging │ │ │ ├── service │ │ │ └── warmboot │ │ └── triggers │ └── rpm │ │ └── pscheduler-server.spec │ └── utilities │ ├── Makefile │ ├── backup.raw │ ├── limit-diags.raw │ ├── log.raw │ ├── notifications.raw │ ├── reset.raw │ ├── restore.raw │ ├── service.raw │ └── validate-configurables.raw ├── pscheduler-test-clock ├── .gitattributes ├── Makefile └── clock │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-clock.spec │ └── validate.py ├── pscheduler-test-dhcp ├── Makefile ├── README.md └── dhcp │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-dhcp.spec │ └── validate.py ├── pscheduler-test-disk-to-disk ├── .gitattributes ├── Makefile └── disk-to-disk │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── example-result.json │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-disk-to-disk.spec │ └── validate.py ├── pscheduler-test-dns ├── .gitattributes ├── Makefile └── dns │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ ├── result-format-a │ ├── result-format-aaaa │ ├── result-format-cname │ ├── result-format-mx │ ├── result-format-ns │ ├── result-format-ptr │ ├── result-format-soa │ ├── result-format-txt │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── test.py │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-dns.spec │ └── validate.py ├── pscheduler-test-dot1x ├── Makefile ├── README.md └── dot1x │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── example-result.json │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-dot1x.spec │ └── validate.py ├── pscheduler-test-http ├── .gitattributes ├── Makefile └── http │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-http.spec │ └── validate.py ├── pscheduler-test-idle ├── .gitattributes ├── Makefile ├── README.md └── idle │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ ├── spec-format-v1 │ └── spec-format-v2 │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-idle.spec │ └── validate.py ├── pscheduler-test-idlebgm ├── .gitattributes ├── Makefile └── idlebgm │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-idlebgm.spec │ └── validate.py ├── pscheduler-test-idleex ├── .gitattributes ├── Makefile └── idleex │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-idleex.spec │ └── validate.py ├── pscheduler-test-latency ├── .gitattributes ├── Makefile ├── latency │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ │ └── spec-format │ ├── latency_utils.py │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ │ ├── deb │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── rules │ │ │ ├── source │ │ │ │ └── format │ │ │ └── triggers │ │ └── rpm │ │ │ └── pscheduler-test-latency.spec │ └── validate.py └── tests │ ├── cli-to-spec_test.py │ ├── enumerate_test.py │ ├── participants_test.py │ ├── result-format_test.py │ ├── spec-format_test.py │ ├── spec-is-valid_test.py │ └── spec-to-cli_test.py ├── pscheduler-test-latencybg ├── .gitattributes ├── Makefile ├── latencybg │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ │ ├── deb │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── rules │ │ │ ├── source │ │ │ │ └── format │ │ │ └── triggers │ │ └── rpm │ │ │ └── pscheduler-test-latencybg.spec │ └── validate.py └── tests │ ├── cli-to-spec_test.py │ ├── enumerate_test.py │ ├── participants_test.py │ ├── result-format_test.py │ ├── spec-format_test.py │ ├── spec-is-valid_test.py │ └── spec-to-cli_test.py ├── pscheduler-test-mtu ├── Makefile ├── README.md └── mtu │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── example-old │ ├── example-result.json │ ├── example-spec.json │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-mtu.spec │ └── validate.py ├── pscheduler-test-netreach ├── .gitattributes ├── Makefile └── netreach │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-netreach.spec │ └── validate.py ├── pscheduler-test-noop ├── .gitattributes ├── Makefile └── noop │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-noop.spec │ └── validate.py ├── pscheduler-test-openports ├── Makefile ├── README.md └── openports │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-openports.spec │ └── validate.py ├── pscheduler-test-psresponse ├── Makefile ├── README.md └── psresponse │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-psresponse.spec │ └── validate.py ├── pscheduler-test-rtt ├── .gitattributes ├── Makefile └── rtt │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-rtt.spec │ └── validate.py ├── pscheduler-test-s3throughput ├── .gitattributes ├── Makefile └── s3throughput │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-s3throughput.spec │ └── validate.py ├── pscheduler-test-simplestream ├── .gitattributes ├── Makefile └── simplestream │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-simplestream.spec │ └── validate.py ├── pscheduler-test-snmpget ├── .gitattributes ├── Makefile └── snmpget │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ ├── spec-format-v1 │ └── spec-format-v3 │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-snmpget.spec │ └── validate.py ├── pscheduler-test-snmpgetbgm ├── .gitattributes ├── Makefile └── snmpgetbgm │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ ├── spec-format-v1 │ └── spec-format-v3 │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-snmpgetbgm.spec │ └── validate.py ├── pscheduler-test-snmpset ├── .gitattributes ├── Makefile └── snmpset │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── spec-format-v1 │ └── spec-format-v3 │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-snmpset.spec │ └── validate.py ├── pscheduler-test-throughput ├── .gitattributes ├── Makefile ├── tests │ ├── cli-to-spec_test.py │ ├── enumerate_test.py │ ├── participants_test.py │ └── spec-is-valid_test.py └── throughput │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── throughput_utils.py │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-throughput.spec │ └── validate.py ├── pscheduler-test-trace ├── .gitattributes ├── Makefile ├── misc │ ├── trace-result.json │ └── trace-task.json └── trace │ ├── LICENSE │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ └── result-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-trace.spec │ └── validate.py ├── pscheduler-test-wifibssid ├── Makefile ├── README.md └── wifibssid │ ├── Makefile │ ├── cli-to-spec │ ├── enumerate │ ├── inputs │ ├── result-format │ └── spec-format │ ├── participants │ ├── result-format │ ├── spec-format │ ├── spec-is-valid │ ├── spec-to-cli │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ └── rpm │ │ └── pscheduler-test-wifibssid.spec │ └── validate.py ├── pscheduler-tool-bssidscanner ├── Makefile ├── README.md └── bssidscanner │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── example-test-spec.json │ ├── merged-results │ ├── participant-data │ ├── run │ ├── run.py │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-bssidscanner.spec ├── pscheduler-tool-bwctliperf2 ├── .gitattributes ├── Makefile └── bwctliperf2 │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-bwctliperf2.spec ├── pscheduler-tool-bwctliperf3 ├── .gitattributes ├── Makefile └── bwctliperf3 │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-bwctliperf3.spec ├── pscheduler-tool-bwctlping ├── .gitattributes ├── Makefile └── bwctlping │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-bwctlping.spec ├── pscheduler-tool-bwctltracepath ├── .gitattributes ├── Makefile └── bwctltracepath │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-bwctltracepath.spec ├── pscheduler-tool-bwctltraceroute ├── .gitattributes ├── Makefile └── bwctltraceroute │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-bwctltraceroute.spec ├── pscheduler-tool-curl-d2d ├── Makefile └── curl-d2d │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-curl-d2d.spec ├── pscheduler-tool-curl ├── .gitattributes ├── Makefile └── curl │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ ├── run_http.py │ ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tests │ │ │ ├── control │ │ │ └── task │ │ └── triggers │ └── rpm │ │ └── pscheduler-tool-curl.spec │ └── utilities.py ├── pscheduler-tool-dhclient ├── Makefile ├── README.md └── dhclient │ ├── Makefile │ ├── can-run │ ├── common.py │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-dhclient.spec ├── pscheduler-tool-dnspy ├── .gitattributes ├── Makefile └── dnspy │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── dnspy_defaults.py │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-dnspy.spec ├── pscheduler-tool-dublin-traceroute ├── Makefile └── dublin-traceroute │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-dublin-traceroute.spec ├── pscheduler-tool-ethr ├── .gitattributes ├── Makefile └── ethr │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── ethr_defaults.py │ ├── ethr_utils.py │ ├── input │ ├── can-run │ ├── duration │ ├── participant-data-0 │ ├── participant-data-1 │ ├── run-0 │ ├── run-0-single │ └── run-1 │ ├── merged-results │ ├── participant-data │ ├── run │ ├── run-ethr0 │ ├── run-ethr1 │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-ethr.spec ├── pscheduler-tool-fpingreach ├── .gitattributes ├── Makefile └── fpingreach │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── fpingreach_common.py │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-fpingreach.spec ├── pscheduler-tool-fwmtu ├── Makefile ├── README.md └── fwmtu │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── example-can-run.json │ ├── example-run.json │ ├── example-test-spec.json │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-fwmtu.spec ├── pscheduler-tool-globus ├── .gitattributes ├── Makefile └── globus │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── globus_example_input.json │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-globus.spec ├── pscheduler-tool-halfping ├── Makefile ├── README.md └── halfping │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── example-spec.json │ ├── example-test-spec.json │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-halfping.spec ├── pscheduler-tool-iperf2 ├── .gitattributes ├── Makefile └── iperf2 │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── iperf2.conf │ ├── iperf2_defaults.py │ ├── iperf2_parser.py │ ├── iperf2_utils.py │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-iperf2.spec ├── pscheduler-tool-iperf3 ├── .gitattributes ├── Makefile └── iperf3 │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── iperf3.conf │ ├── iperf3_defaults.py │ ├── iperf3_parser.py │ ├── iperf3_utils.py │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── patches │ │ ├── python35 │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-iperf3.spec ├── pscheduler-tool-net-snmp-set ├── .gitattributes ├── Makefile └── net-snmp-set │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-net-snmp-set.spec ├── pscheduler-tool-nmapreach ├── .gitattributes ├── Makefile └── nmapreach │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-nmapreach.spec ├── pscheduler-tool-nmapscan ├── Makefile ├── README.md └── nmapscan │ ├── Makefile │ ├── README.md │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ ├── timings.png │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-nmapscan.spec ├── pscheduler-tool-nuttcp ├── .gitattributes ├── Makefile └── nuttcp │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── nuttcp.conf │ ├── nuttcp_defaults.py │ ├── nuttcp_parser.py │ ├── nuttcp_utils.py │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-nuttcp.spec ├── pscheduler-tool-owping ├── .gitattributes ├── Makefile ├── owping │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── owping.conf │ ├── owping_defaults.py │ ├── owping_utils.py │ ├── participant-data │ ├── run │ └── unibuild-packaging │ │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ │ └── rpm │ │ └── pscheduler-tool-owping.spec └── tests │ ├── can-run_test.py │ ├── duration_test.py │ ├── enumerate_test.py │ ├── merged-results_test.py │ └── participant-data_test.py ├── pscheduler-tool-paris-traceroute ├── .gitattributes ├── Makefile └── paris-traceroute │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── sudoers │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-paris-traceroute.spec ├── pscheduler-tool-passthrough ├── .gitattributes ├── Makefile └── passthrough │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-passthrough.spec ├── pscheduler-tool-ping ├── .gitattributes ├── Makefile └── ping │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── ping_utils.py │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── postinst │ ├── rules │ ├── source │ │ └── format │ ├── sudoers │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-ping.spec ├── pscheduler-tool-powstream ├── .gitattributes ├── Makefile ├── powstream │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── powstream.conf │ ├── powstream_defaults.py │ ├── powstream_utils.py │ ├── run │ └── unibuild-packaging │ │ ├── deb │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── postinst │ │ ├── postrm │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── triggers │ │ └── rpm │ │ └── pscheduler-tool-powstream.spec └── tests │ ├── can-run_test.py │ ├── duration_test.py │ ├── enumerate_test.py │ ├── merged-results_test.py │ └── participant-data_test.py ├── pscheduler-tool-psclock ├── .gitattributes ├── Makefile └── psclock │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-psclock.spec ├── pscheduler-tool-pstimer ├── Makefile ├── README.md └── pstimer │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-pstimer.spec ├── pscheduler-tool-psurl ├── .gitattributes ├── Makefile └── psurl │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-psurl.spec ├── pscheduler-tool-pysnmp ├── .gitattributes ├── Makefile └── pysnmp │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-pysnmp.spec ├── pscheduler-tool-s3-benchmark ├── .gitattributes ├── Makefile └── s3-benchmark │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-s3-benchmark.spec ├── pscheduler-tool-simplestreamer ├── .gitattributes ├── Makefile └── simplestreamer │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-simplestreamer.spec ├── pscheduler-tool-sleep ├── .gitattributes ├── Makefile ├── README.md └── sleep │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-sleep.spec ├── pscheduler-tool-sleepbgm ├── .gitattributes ├── Makefile └── sleepbgm │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-sleepbgm.spec ├── pscheduler-tool-snooze ├── .gitattributes ├── Makefile ├── README.md └── snooze │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-snooze.spec ├── pscheduler-tool-tcpping ├── .gitattributes ├── Makefile └── tcpping │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-tcpping.spec ├── pscheduler-tool-tracemtu ├── Makefile └── tracemtu │ ├── Makefile │ ├── can-run │ ├── common.py │ ├── duration │ ├── enumerate │ ├── example-can-run.json │ ├── example-run.json │ ├── example-test-spec.json │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-tracemtu.spec ├── pscheduler-tool-tracepath ├── .gitattributes ├── Makefile └── tracepath │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-tracepath.spec ├── pscheduler-tool-traceroute ├── .gitattributes ├── Makefile └── traceroute │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── sudoers │ ├── tests │ │ ├── control │ │ └── task │ └── triggers │ └── rpm │ └── pscheduler-tool-traceroute.spec ├── pscheduler-tool-twping ├── .gitattributes ├── Makefile ├── tests │ ├── can-run_test.py │ ├── duration_test.py │ ├── enumerate_test.py │ ├── merged-results_test.py │ └── participant-data_test.py └── twping │ ├── LICENSE │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── merged-results │ ├── participant-data │ ├── run │ ├── twping.conf │ ├── twping_defaults.py │ ├── twping_utils.py │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-twping.spec ├── pscheduler-tool-umichwpa ├── Makefile ├── README.md └── umichwpa │ ├── Makefile │ ├── can-run │ ├── duration │ ├── enumerate │ ├── example-test-spec.json │ ├── merged-results │ ├── participant-data │ ├── run │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── triggers │ └── rpm │ └── pscheduler-tool-umichwpa.spec ├── python-daemon ├── Makefile ├── python-daemon-2.2.3.tar.gz └── unibuild-packaging │ └── rpm │ └── python-daemon.spec ├── python-flask ├── Makefile ├── flask-1.1.1.tar.gz └── unibuild-packaging │ └── rpm │ └── python-flask.spec ├── python-icmperror ├── Makefile └── icmperror │ ├── icmperror │ ├── __init__.py │ └── icmperror.py │ ├── setup.py │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── python-icmperror.spec ├── python-itsdangerous ├── Makefile ├── itsdangerous-1.1.0.tar.gz └── unibuild-packaging │ └── rpm │ └── python-itsdangerous.spec ├── python-jsonschema ├── Makefile ├── jsonschema-3.0.1.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── gbp.conf │ ├── patches │ │ ├── python3-only │ │ ├── series │ │ └── six-version │ ├── python3-jsonschema.postinst │ ├── python3-jsonschema.postrm │ ├── python3-jsonschema.prerm │ ├── rules │ ├── source │ │ ├── format │ │ └── options │ ├── tests │ │ ├── control │ │ └── upstream-py3 │ └── watch │ └── rpm │ └── python-jsonschema.spec ├── python-kafka ├── Makefile ├── kafka-python-2.0.2.tar.gz └── unibuild-packaging │ └── rpm │ └── python-kafka.spec ├── python-nmap3 ├── Makefile ├── python3-nmap-1.5.0.tar.gz └── unibuild-packaging │ └── rpm │ └── python-nmap3.spec ├── python-nose ├── Makefile ├── nose-1.3.7.tar.gz └── unibuild-packaging │ └── rpm │ ├── python-nose-coverage4.patch │ ├── python-nose-py35.patch │ ├── python-nose-py36.patch │ ├── python-nose-readunicode.patch │ ├── python-nose-unicode.patch │ └── python-nose.spec ├── python-ntplib ├── Makefile ├── ntplib-0.3.3.tar.gz └── unibuild-packaging │ ├── deb │ ├── .git-dpm │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── rules │ ├── source │ │ └── format │ └── watch │ └── rpm │ └── python-ntplib.spec ├── python-parse-crontab ├── Makefile ├── parse-crontab-0.22.6.tar.gz └── unibuild-packaging │ └── rpm │ └── python-parse-crontab.spec ├── python-pscheduler ├── Makefile └── pscheduler │ ├── LICENSE │ ├── Makefile │ ├── dev-requirements.txt │ ├── pscheduler │ ├── __init__.py │ ├── api.py │ ├── batchprocessor │ │ ├── __init__.py │ │ ├── batchprocessor.py │ │ └── test-input │ ├── clockstate.py │ ├── db.py │ ├── debuggable.py │ ├── durationrange.py │ ├── enummatcher.py │ ├── exception.py │ ├── exit.py │ ├── exitstatus.py │ ├── expiringset.py │ ├── failopt.py │ ├── filestring.py │ ├── interface.py │ ├── ipaddr.py │ ├── ipcidrmatcher.py │ ├── iso8601.py │ ├── jqfilter.py │ ├── jsonval.py │ ├── limitprocessor │ │ ├── README.md │ │ ├── applicationset.py │ │ ├── classifierset.py │ │ ├── identifier │ │ │ ├── always.py │ │ │ ├── hint.py │ │ │ ├── ipcidrlist.py │ │ │ ├── ipcidrlisturl.py │ │ │ ├── ipcymruasn.py │ │ │ ├── ipcymrubogon.py │ │ │ ├── ipreversedns.py │ │ │ ├── jq.py │ │ │ ├── localif.py │ │ │ └── localsubnet.py │ │ ├── identifierset.py │ │ ├── limit │ │ │ ├── __init__.py │ │ │ ├── jq.py │ │ │ ├── passfail.py │ │ │ ├── rundaterange.py │ │ │ ├── runschedule.py │ │ │ ├── test.py │ │ │ ├── testtype.py │ │ │ └── urlfetch.py │ │ ├── limitprocessor.py │ │ ├── limitset.py │ │ ├── prioritizer.py │ │ ├── pscheduler-limits-validate.json │ │ └── rewriter.py │ ├── limits.py │ ├── log.py │ ├── mtu.py │ ├── numa.py │ ├── numeric.py │ ├── numericrange.py │ ├── pidfile.py │ ├── ping.py │ ├── plugins.py │ ├── process.py │ ├── program.py │ ├── psas.py │ ├── psdns.py │ ├── psjson.py │ ├── psselect.py │ ├── pssleep.py │ ├── pstime.py │ ├── psurl.py │ ├── retry.py │ ├── sinumber.py │ ├── speccli.py │ ├── stringmatcher.py │ ├── text.py │ ├── threadsafe.py │ ├── unittesting.py │ └── worker.py │ ├── pylint.rc │ ├── setup.py │ ├── tests │ ├── Makefile │ ├── README.md │ ├── api_test.py │ ├── base_test.py │ ├── clockstate_test.py │ ├── db_test.py │ ├── durationrange_test.py │ ├── enummatcher_test.py │ ├── filestring_test.py │ ├── interface_test.py │ ├── ipaddr_test.py │ ├── iso8601_test.py │ ├── jqfilter_test.py │ ├── jsonval_test.py │ ├── limitprocessor_identifier_always_test.py │ ├── limitprocessor_identifier_hint_test.py │ ├── limitprocessor_identifier_ipcidrlist_test.py │ ├── limitprocessor_identifier_ipcidrlisturl_test.py │ ├── limitprocessor_identifier_ipcymrubogon_test.py │ ├── limitprocessor_identifier_ipreversedns_test.py │ ├── limitprocessor_identifier_jq_test.py │ ├── limitprocessor_identifier_localif_test.py │ ├── limitprocessor_identifier_localsubnet_test.py │ ├── limitprocessor_limit_jq_test.py │ ├── limitprocessor_limit_passfail_test.py │ ├── limitprocessor_limit_rundaterange_test.py │ ├── limitprocessor_limit_runschedule_test.py │ ├── limitprocessor_limit_test_test.py │ ├── limitprocessor_limit_testtype_test.py │ ├── limitprocessor_limit_urlfetch_test.py │ ├── log_test.py │ ├── numa_test.py │ ├── numeric_test.py │ ├── numericrange_test.py │ ├── ping_test.py │ ├── process_test.py │ ├── program_test.py │ ├── psas_test.py │ ├── psdns_test.py │ ├── psjson_test.py │ ├── psselect_test.py │ ├── pssleep_test.py │ ├── psurl_test.py │ ├── retry_test.py │ ├── sinumber_test.py │ ├── speccli_test.py │ ├── stringmatcher_test.py │ ├── text_test.py │ └── threadsafe_test.py │ └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── patches │ │ ├── classes.patch │ │ ├── series │ │ ├── setup.patch │ │ └── tests.patch │ ├── rules │ ├── source │ │ └── format │ └── tests │ │ ├── control │ │ ├── import │ │ └── jq │ └── rpm │ └── python-pscheduler.spec ├── python-py-amqp ├── Makefile ├── py-amqp-5.0.6.tar.gz └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── Makefile │ ├── changelog │ ├── clean │ ├── compat-Debian-11 │ ├── compat-Ubuntu-20 │ ├── control-Debian-11 │ ├── control-Ubuntu-20 │ ├── copyright │ ├── patches │ │ ├── 0001-Remove-PayPal-image-URLs.patch │ │ ├── 0002-Disable-intersphinx-mapping-for-now.patch │ │ ├── 0003-remove-broken-test.patch │ │ ├── python35 │ │ └── series │ ├── python-amqp-doc.doc-base │ ├── rules │ ├── source │ │ ├── format │ │ ├── include-binaries │ │ └── options │ ├── tests │ │ └── control │ ├── upstream │ │ └── metadata │ └── watch │ └── rpm │ └── python-py-amqp.spec ├── python-py-radix ├── Makefile ├── py-radix-0.9.6.tar.gz └── unibuild-packaging │ └── rpm │ └── python-py-radix.spec ├── python-pyasn1-modules ├── Makefile ├── pyasn1-modules-0.2.4.tar.gz └── unibuild-packaging │ └── rpm │ └── python-pyasn1-modules.spec ├── python-pyasn1 ├── Makefile ├── pyasn1-0.4.5.tar.gz └── unibuild-packaging │ └── rpm │ └── python-pyasn1.spec ├── python-pyjq ├── Makefile ├── pyjq-2.4.0.tar.gz └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── changelog │ ├── compat-Debian-11 │ ├── compat-Debian-12 │ ├── compat-Ubuntu-20 │ ├── compat-Ubuntu-22 │ ├── compat-Ubuntu-24 │ ├── control-Debian-11 │ ├── control-Debian-12 │ ├── control-Ubuntu-20 │ ├── control-Ubuntu-22 │ ├── control-Ubuntu-24 │ ├── copyright │ ├── patches │ │ ├── disable-tests.patch │ │ └── series │ ├── rules-Debian-11 │ ├── rules-Debian-12 │ ├── rules-Ubuntu-20 │ ├── rules-Ubuntu-22 │ ├── rules-Ubuntu-24 │ └── source │ │ └── format │ ├── python-pyjq-2.4.0-00-nodownloads.patch │ ├── python-pyjq-2.4.0-01-void-except.patch │ └── rpm │ └── python-pyjq.spec ├── python-pyrsistent ├── Makefile ├── pyrsistent-0.14.11.ps.tar.gz ├── pyrsistent-0.14.11.tar.gz └── unibuild-packaging │ ├── deb │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── changelog │ ├── compat-Debian-10 │ ├── control-Debian-10 │ ├── copyright │ ├── rules-Debian-10 │ ├── source │ │ └── format │ └── watch │ └── rpm │ └── python-pyrsistent.spec ├── python-pysnmp ├── Makefile ├── pysnmp-4.4.12.tar.gz └── unibuild-packaging │ └── rpm │ └── pysnmp.spec ├── python-radix ├── Makefile ├── py-radix-0.10.0.tar.gz └── unibuild-packaging │ └── deb │ ├── .git-dpm │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── gbp.conf │ ├── rules │ ├── source │ ├── format │ └── lintian-overrides │ └── watch ├── python-tzlocal ├── Makefile ├── tzlocal-1.2.2.tar.gz └── unibuild-packaging │ └── rpm │ └── python-tzlocal.spec ├── python-vcversioner ├── Makefile ├── unibuild-packaging │ └── rpm │ │ └── python-vcversioner.spec └── vcversioner-2.16.0.0.tar.gz ├── python-vine ├── Makefile ├── unibuild-packaging │ ├── deb │ │ ├── changelog │ │ ├── clean │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── patches │ │ │ ├── 0001-Remove-image-from-remote-donation-site-privacy-issue.patch │ │ │ ├── python35 │ │ │ └── series │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ └── rpm │ │ └── python-vine.spec └── vine-5.0.0.tar.gz ├── python-werkzeug ├── Makefile ├── unibuild-packaging │ └── rpm │ │ └── python-werkzeug.spec └── werkzeug-0.15.5.tar.gz ├── rpm-post-wrapper ├── Makefile ├── rpm-post-wrapper │ ├── LICENSE │ ├── Makefile │ ├── rpm-post-wrapper │ └── rpm-post-wrapper.1 └── unibuild-packaging │ └── rpm │ └── rpm-post-wrapper.spec ├── s3-benchmark ├── Makefile ├── s3-benchmark-1.0-beta.tar.gz ├── s3-benchmark-1.0.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── s3-benchmark.spec ├── scripts ├── PDK │ ├── README.md │ ├── archiver.md │ ├── plugin_dev │ ├── templates │ │ ├── archiver │ │ │ ├── .gitattributes │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── __PLUGIN_NAME__ │ │ │ │ ├── Makefile │ │ │ │ ├── __PLUGIN_NAME__.txt │ │ │ │ ├── archive │ │ │ │ ├── data-is-valid │ │ │ │ ├── enumerate │ │ │ │ └── unibuild-packaging │ │ │ │ ├── deb │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── rules │ │ │ │ ├── source │ │ │ │ │ └── format │ │ │ │ ├── tests │ │ │ │ │ ├── archiver │ │ │ │ │ └── control │ │ │ │ └── triggers │ │ │ │ └── rpm │ │ │ │ └── pscheduler-archiver-__PLUGIN_NAME__.spec │ │ ├── test │ │ │ ├── .gitattributes │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── __PLUGIN_NAME__ │ │ │ │ ├── Makefile │ │ │ │ ├── cli-to-spec │ │ │ │ ├── enumerate │ │ │ │ ├── inputs │ │ │ │ ├── result-format │ │ │ │ └── spec-format │ │ │ │ ├── participants │ │ │ │ ├── result-format │ │ │ │ ├── spec-format │ │ │ │ ├── spec-is-valid │ │ │ │ ├── spec-to-cli │ │ │ │ ├── unibuild-packaging │ │ │ │ ├── deb │ │ │ │ │ ├── changelog │ │ │ │ │ ├── compat │ │ │ │ │ ├── control │ │ │ │ │ ├── copyright │ │ │ │ │ ├── rules │ │ │ │ │ ├── source │ │ │ │ │ │ └── format │ │ │ │ │ └── triggers │ │ │ │ └── rpm │ │ │ │ │ └── pscheduler-test-__PLUGIN_NAME__.spec │ │ │ │ └── validate.py │ │ └── tool │ │ │ ├── .gitattributes │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── __PLUGIN_NAME__ │ │ │ ├── Makefile │ │ │ ├── can-run │ │ │ ├── duration │ │ │ ├── enumerate │ │ │ ├── example-test-spec.json │ │ │ ├── merged-results │ │ │ ├── participant-data │ │ │ ├── run │ │ │ └── unibuild-packaging │ │ │ ├── deb │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── rules │ │ │ ├── source │ │ │ │ └── format │ │ │ └── triggers │ │ │ └── rpm │ │ │ └── pscheduler-tool-__PLUGIN_NAME__.spec │ ├── test.md │ └── tool.md ├── README.md ├── deb │ ├── check-rpm-deb-deps │ └── fix-compat ├── memory-consumption ├── postgresql-analyze-locks ├── pylint.cfg ├── run-pylint ├── testbed-check-non-starters.sh ├── testbed-stat └── vagrant │ └── dev-cluster │ ├── Makefile │ ├── README.md │ ├── Vagrantfile │ └── ansible │ ├── etc-hosts.j2 │ ├── etc-sudoers.d.j2 │ └── main.yml ├── tcpping ├── Makefile ├── tcpping-0.1.tar.gz └── unibuild-packaging │ ├── deb │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── rules │ └── source │ │ └── format │ └── rpm │ └── tcpping.spec └── unibuild-order /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cython/Cython-0.29.21.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/Cython/Cython-0.29.21.tar.gz -------------------------------------------------------------------------------- /Cython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/Cython/Makefile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/README.md -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docker-build.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/archiver-rabbitmq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/archiver-rabbitmq.tex -------------------------------------------------------------------------------- /docs/archiver-syslog.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/archiver-syslog.tex -------------------------------------------------------------------------------- /docs/developers-guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/developers-guide.tex -------------------------------------------------------------------------------- /docs/dirtree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/dirtree/Makefile -------------------------------------------------------------------------------- /docs/dirtree/dirtree.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/dirtree/dirtree.zip -------------------------------------------------------------------------------- /docs/json-samples/archiver-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/json-samples/archiver-input.json -------------------------------------------------------------------------------- /docs/json.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/json.tex -------------------------------------------------------------------------------- /docs/limits.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/limits.tex -------------------------------------------------------------------------------- /docs/misc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/misc.tex -------------------------------------------------------------------------------- /docs/pscheduler-tex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/pscheduler-tex.tex -------------------------------------------------------------------------------- /docs/test-clock.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/test-clock.tex -------------------------------------------------------------------------------- /docs/test-dns.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/test-dns.tex -------------------------------------------------------------------------------- /docs/test-idle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/test-idle.tex -------------------------------------------------------------------------------- /docs/test-rtt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/test-rtt.tex -------------------------------------------------------------------------------- /docs/test-simplestream.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/test-simplestream.tex -------------------------------------------------------------------------------- /docs/test-trace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/test-trace.tex -------------------------------------------------------------------------------- /docs/values.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/docs/values.tex -------------------------------------------------------------------------------- /drop-in/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/drop-in/Makefile -------------------------------------------------------------------------------- /drop-in/drop-in-1.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/drop-in/drop-in-1.6.tar.gz -------------------------------------------------------------------------------- /drop-in/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /drop-in/unibuild-packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/drop-in/unibuild-packaging/deb/control -------------------------------------------------------------------------------- /drop-in/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/drop-in/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /drop-in/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dublin-traceroute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/dublin-traceroute/Makefile -------------------------------------------------------------------------------- /dublin-traceroute/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /dublin-traceroute/unibuild-packaging/deb/dublin-traceroute.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /dublin-traceroute/unibuild-packaging/deb/dublin-traceroute.install: -------------------------------------------------------------------------------- 1 | usr/bin/* 2 | -------------------------------------------------------------------------------- /dublin-traceroute/unibuild-packaging/deb/libdublintraceroute-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/include 3 | -------------------------------------------------------------------------------- /dublin-traceroute/unibuild-packaging/deb/libdublintraceroute1.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /dublin-traceroute/unibuild-packaging/deb/libdublintraceroute1.install: -------------------------------------------------------------------------------- 1 | usr/lib/* 2 | -------------------------------------------------------------------------------- /dublin-traceroute/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /ethr/.gitignore: -------------------------------------------------------------------------------- 1 | # Detritus from running without -no in effect. 2 | ethr*.log 3 | -------------------------------------------------------------------------------- /ethr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/Makefile -------------------------------------------------------------------------------- /ethr/ethr-1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/ethr-1.0.0.tar.gz -------------------------------------------------------------------------------- /ethr/unibuild-packaging/00-ipv6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/unibuild-packaging/00-ipv6.patch -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/unibuild-packaging/deb/changelog -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/unibuild-packaging/deb/control -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/unibuild-packaging/deb/copyright -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/unibuild-packaging/deb/gbp.conf -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | 00-ipv6.patch 2 | -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /ethr/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /ethr/unibuild-packaging/rpm/ethr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr/unibuild-packaging/rpm/ethr.spec -------------------------------------------------------------------------------- /ethr0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/Makefile -------------------------------------------------------------------------------- /ethr0/ethr-0.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/ethr-0.2.1.tar.gz -------------------------------------------------------------------------------- /ethr0/ethrc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/ethrc.log -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/unibuild-packaging/deb/changelog -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/unibuild-packaging/deb/control -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/unibuild-packaging/deb/copyright -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/unibuild-packaging/deb/gbp.conf -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | common-golang-sys.patch 2 | -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/ethr0/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /ethr0/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /httpd-firewall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/httpd-firewall/Makefile -------------------------------------------------------------------------------- /httpd-wsgi-socket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/httpd-wsgi-socket/Makefile -------------------------------------------------------------------------------- /iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/Makefile -------------------------------------------------------------------------------- /iperf/iperf-2.1.9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/iperf-2.1.9.tar.gz -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/unibuild-packaging/deb/changelog -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/clean: -------------------------------------------------------------------------------- 1 | debian/*.debhelper.log 2 | -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/unibuild-packaging/deb/control -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/unibuild-packaging/deb/copyright -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/iperf.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/iperf.docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/iperf.lintian-overrides: -------------------------------------------------------------------------------- 1 | iperf: groff-message 2 | -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/ufw/iperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/unibuild-packaging/deb/ufw/iperf -------------------------------------------------------------------------------- /iperf/unibuild-packaging/deb/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf/unibuild-packaging/deb/watch -------------------------------------------------------------------------------- /iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf3/Makefile -------------------------------------------------------------------------------- /iperf3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf3/README.md -------------------------------------------------------------------------------- /iperf3/iperf3-3.19.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf3/iperf3-3.19.1.tar.gz -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/.gitignore: -------------------------------------------------------------------------------- 1 | # These are generated by the Makefile 2 | compat 3 | control 4 | rules 5 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf3/unibuild-packaging/deb/Makefile -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf3/unibuild-packaging/deb/README -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/compat-Debian-11: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/compat-Debian-12: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/compat-Ubuntu-20: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/compat-Ubuntu-22: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/compat-Ubuntu-24: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf3/unibuild-packaging/deb/gbp.conf -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/iperf3-ssl3.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/iperf3-ssl3.install: -------------------------------------------------------------------------------- 1 | usr/bin/iperf3 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/iperf3-ssl3.installdirs: -------------------------------------------------------------------------------- 1 | var/log/iperf3 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/iperf3.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/iperf3.install: -------------------------------------------------------------------------------- 1 | usr/bin/iperf3 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/iperf3.installdirs: -------------------------------------------------------------------------------- 1 | var/log/iperf3 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/libiperf-dev-ssl3.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/libiperf-dev.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/libiperf0-ssl3.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/libiperf0.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /iperf3/unibuild-packaging/deb/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/iperf3/unibuild-packaging/deb/watch -------------------------------------------------------------------------------- /jq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/Makefile -------------------------------------------------------------------------------- /jq/jq-1.7.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/jq-1.7.1.tar.gz -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/deb/changelog -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/deb/control -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/deb/copyright -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/deb/gbp.conf -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/jq.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/deb/jq.install -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | unit-tests 2 | -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /jq/unibuild-packaging/deb/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/deb/watch -------------------------------------------------------------------------------- /jq/unibuild-packaging/rpm/jq.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/jq/unibuild-packaging/rpm/jq.spec -------------------------------------------------------------------------------- /libtins/.gitignore: -------------------------------------------------------------------------------- 1 | .cmake 2 | -------------------------------------------------------------------------------- /libtins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/libtins/Makefile -------------------------------------------------------------------------------- /libtins/libtins-4.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/libtins/libtins-4.2.tar.gz -------------------------------------------------------------------------------- /nuttcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/nuttcp/Makefile -------------------------------------------------------------------------------- /nuttcp/nuttcp-8.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/nuttcp/nuttcp-8.2.2.tar.gz -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/nuttcp/unibuild-packaging/deb/control -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/docs: -------------------------------------------------------------------------------- 1 | examples.txt 2 | README 3 | -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/nuttcp/unibuild-packaging/deb/examples -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/nuttcp/unibuild-packaging/deb/gbp.conf -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | 00-Makefile 2 | 01-Man 3 | 02-xinetd.d 4 | 03-IPv6 5 | -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/nuttcp/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /nuttcp/unibuild-packaging/deb/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/nuttcp/unibuild-packaging/deb/watch -------------------------------------------------------------------------------- /oniguruma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/oniguruma/Makefile -------------------------------------------------------------------------------- /oniguruma/oniguruma-6.9.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/oniguruma/oniguruma-6.9.6.tar.gz -------------------------------------------------------------------------------- /oniguruma/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /oniguruma/unibuild-packaging/deb/libonig-dev.examples: -------------------------------------------------------------------------------- 1 | sample/*.c 2 | -------------------------------------------------------------------------------- /oniguruma/unibuild-packaging/deb/libonig5-dbg.dirs: -------------------------------------------------------------------------------- 1 | usr/share/doc 2 | -------------------------------------------------------------------------------- /oniguruma/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/oniguruma/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /oniguruma/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /owamp/unibuild-packaging/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/owamp/unibuild-packaging/deb/changelog -------------------------------------------------------------------------------- /paris-traceroute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/paris-traceroute/Makefile -------------------------------------------------------------------------------- /paris-traceroute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/paris-traceroute/README.md -------------------------------------------------------------------------------- /paris-traceroute/fetch-sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/paris-traceroute/fetch-sources -------------------------------------------------------------------------------- /paris-traceroute/paris-traceroute-0.93.ps.tar.gz: -------------------------------------------------------------------------------- 1 | paris-traceroute-1.0.tar.gz -------------------------------------------------------------------------------- /paris-traceroute/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /paris-traceroute/unibuild-packaging/deb/libparistraceroute-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/include 3 | -------------------------------------------------------------------------------- /paris-traceroute/unibuild-packaging/deb/libparistraceroute1.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /paris-traceroute/unibuild-packaging/deb/libparistraceroute1.install: -------------------------------------------------------------------------------- 1 | usr/lib/* 2 | -------------------------------------------------------------------------------- /paris-traceroute/unibuild-packaging/deb/paris-traceroute.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /paris-traceroute/unibuild-packaging/deb/paris-traceroute.install: -------------------------------------------------------------------------------- 1 | usr/bin/* 2 | -------------------------------------------------------------------------------- /paris-traceroute/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /postgresql-init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/postgresql-init/Makefile -------------------------------------------------------------------------------- /postgresql-load/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/postgresql-load/Makefile -------------------------------------------------------------------------------- /postgresql-load/postgresql-load/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /postgresql-load/postgresql-load/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-account/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-account/.gitattributes -------------------------------------------------------------------------------- /pscheduler-account/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-account/LICENSE -------------------------------------------------------------------------------- /pscheduler-account/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-account/Makefile -------------------------------------------------------------------------------- /pscheduler-account/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-account/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pscheduler-account/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Tests: user 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-bitbucket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-bitbucket/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-bitbucket/bitbucket/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-bitbucket/bitbucket/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-bitbucket/bitbucket/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-esmond/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-esmond/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-esmond/esmond/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pscheduler-archiver-esmond/esmond/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-esmond/esmond/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-esmond/esmond/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-failer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-failer/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-failer/failer/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-failer/failer/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-failer/failer/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: archiver 3 | -------------------------------------------------------------------------------- /pscheduler-archiver-failer/failer/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-http/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-http/http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-http/http/LICENSE -------------------------------------------------------------------------------- /pscheduler-archiver-http/http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-http/http/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-http/http/archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-http/http/archive -------------------------------------------------------------------------------- /pscheduler-archiver-http/http/http.txt: -------------------------------------------------------------------------------- 1 | DOCUMENTATION FOR PSCHEDULER HTTP ARCHIVER CLASS 2 | 3 | TODO: Write this. 4 | -------------------------------------------------------------------------------- /pscheduler-archiver-http/http/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-http/http/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-http/http/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-http/tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-http/tests/LICENSE -------------------------------------------------------------------------------- /pscheduler-archiver-kafka/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-kafka/.gitignore -------------------------------------------------------------------------------- /pscheduler-archiver-kafka/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-kafka/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-kafka/kafka/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-kafka/kafka/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-kafka/kafka/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: archiver 3 | -------------------------------------------------------------------------------- /pscheduler-archiver-kafka/kafka/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-postgresql/postgresql/postgresql.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Documentation for the postgresql archiver 3 | # 4 | -------------------------------------------------------------------------------- /pscheduler-archiver-postgresql/postgresql/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-postgresql/postgresql/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-postgresql/postgresql/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-rabbitmq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-rabbitmq/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-rabbitmq/rabbitmq/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-rabbitmq/rabbitmq/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pscheduler-archiver-rabbitmq/rabbitmq/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-rabbitmq/rabbitmq/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-snmptrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-snmptrap/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-snmptrap/snmptrap/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-snmptrap/snmptrap/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-snmptrap/snmptrap/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-syslog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-syslog/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-syslog/syslog/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-syslog/syslog/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-syslog/syslog/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/.gitattributes -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/tcp/LICENSE -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/tcp/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/tcp/archive -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/tcp/enumerate -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/tcp.txt: -------------------------------------------------------------------------------- 1 | DOCUMENTATION FOR THE TCP ARCHIVER 2 | 3 | TODO: Write this. 4 | 5 | -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tcp/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/tests/LICENSE -------------------------------------------------------------------------------- /pscheduler-archiver-tcp/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-tcp/tests/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-udp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/.gitattributes -------------------------------------------------------------------------------- /pscheduler-archiver-udp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-udp/tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/tests/LICENSE -------------------------------------------------------------------------------- /pscheduler-archiver-udp/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/tests/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/udp/LICENSE -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/udp/Makefile -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/udp/archive -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-archiver-udp/udp/enumerate -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/udp.txt: -------------------------------------------------------------------------------- 1 | DOCUMENTATION FOR THE UDP ARCHIVER 2 | 3 | TODO: Write this. 4 | 5 | -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-archiver-udp/udp/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-extras/.gitignore: -------------------------------------------------------------------------------- 1 | pscheduler-bundle-extras.spec 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-extras/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-bundle-extras/Makefile -------------------------------------------------------------------------------- /pscheduler-bundle-extras/unibuild-packaging/deb/.gitignore: -------------------------------------------------------------------------------- 1 | control 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-extras/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-extras/unibuild-packaging/deb/control-bottom: -------------------------------------------------------------------------------- 1 | Description: pScheduler extras packages 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-extras/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-full/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-bundle-full/.gitattributes -------------------------------------------------------------------------------- /pscheduler-bundle-full/.gitignore: -------------------------------------------------------------------------------- 1 | pscheduler-bundle-full.spec 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-bundle-full/Makefile -------------------------------------------------------------------------------- /pscheduler-bundle-full/unibuild-packaging/deb/.gitignore: -------------------------------------------------------------------------------- 1 | control 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-full/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-full/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-bundle-minimal/Makefile -------------------------------------------------------------------------------- /pscheduler-bundle-minimal/unibuild-packaging/deb/.gitignore: -------------------------------------------------------------------------------- 1 | control 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-minimal/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-minimal/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-minimal/unibuild-packaging/rpm/.gitignore: -------------------------------------------------------------------------------- 1 | pscheduler-bundle-minimal.spec 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-obsolete/.gitignore: -------------------------------------------------------------------------------- 1 | pscheduler-bundle-obsolete.spec 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-obsolete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-bundle-obsolete/Makefile -------------------------------------------------------------------------------- /pscheduler-bundle-obsolete/unibuild-packaging/deb/.gitignore: -------------------------------------------------------------------------------- 1 | control 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-obsolete/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-obsolete/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-snmp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-bundle-snmp/.gitattributes -------------------------------------------------------------------------------- /pscheduler-bundle-snmp/.gitignore: -------------------------------------------------------------------------------- 1 | pscheduler-bundle-snmp.spec 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-snmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-bundle-snmp/Makefile -------------------------------------------------------------------------------- /pscheduler-bundle-snmp/unibuild-packaging/deb/.gitignore: -------------------------------------------------------------------------------- 1 | control 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-snmp/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-bundle-snmp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pscheduler-context-changefail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-context-changefail/Makefile -------------------------------------------------------------------------------- /pscheduler-context-changefail/changefail/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-context-changefail/changefail/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-context-changefail/changefail/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-context-changefail/changefail/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-context-changenothing/changenothing/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-context-changenothing/changenothing/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-context-changenothing/changenothing/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-context-linuxnns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-context-linuxnns/Makefile -------------------------------------------------------------------------------- /pscheduler-context-linuxnns/linuxnns/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-context-linuxnns/linuxnns/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-context-linuxnns/linuxnns/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-context-linuxvrf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-context-linuxvrf/Makefile -------------------------------------------------------------------------------- /pscheduler-context-linuxvrf/linuxvrf/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-context-linuxvrf/linuxvrf/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-context-linuxvrf/linuxvrf/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-core/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/.gitattributes -------------------------------------------------------------------------------- /pscheduler-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/Makefile -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/batch -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/cancel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/cancel -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/clock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/clock -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/env -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/ping -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/result -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/task -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/unibuild-packaging/deb/clean: -------------------------------------------------------------------------------- 1 | list 2 | -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | diags.patch 2 | -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/unibuild-packaging/deb/tests/diags: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | pscheduler diags 6 | -------------------------------------------------------------------------------- /pscheduler-core/pscheduler-core/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-core/pscheduler-core/watch -------------------------------------------------------------------------------- /pscheduler-docs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-docs/.gitattributes -------------------------------------------------------------------------------- /pscheduler-docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-docs/Makefile -------------------------------------------------------------------------------- /pscheduler-docs/pscheduler-docs/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-docs/pscheduler-docs/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-jq-library/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-jq-library/.gitattributes -------------------------------------------------------------------------------- /pscheduler-jq-library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-jq-library/Makefile -------------------------------------------------------------------------------- /pscheduler-jq-library/pscheduler-jq-library/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-jq-library/pscheduler-jq-library/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-minimal-marker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-minimal-marker/LICENSE -------------------------------------------------------------------------------- /pscheduler-minimal-marker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-minimal-marker/Makefile -------------------------------------------------------------------------------- /pscheduler-minimal-marker/pscheduler-minimal-marker/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-minimal-marker/pscheduler-minimal-marker/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-rpm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-rpm/.gitattributes -------------------------------------------------------------------------------- /pscheduler-rpm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-rpm/LICENSE -------------------------------------------------------------------------------- /pscheduler-rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-rpm/Makefile -------------------------------------------------------------------------------- /pscheduler-server/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-server/.gitattributes -------------------------------------------------------------------------------- /pscheduler-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-server/Makefile -------------------------------------------------------------------------------- /pscheduler-server/pscheduler-server/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-server/pscheduler-server/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-server/pscheduler-server/unibuild-packaging/deb/tests/debug: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | pscheduler debug off 4 | -------------------------------------------------------------------------------- /pscheduler-server/pscheduler-server/unibuild-packaging/deb/tests/warmboot: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | pscheduler internal warmboot 4 | -------------------------------------------------------------------------------- /pscheduler-server/pscheduler-server/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | interest-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-clock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-clock/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-clock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-clock/Makefile -------------------------------------------------------------------------------- /pscheduler-test-clock/clock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-clock/clock/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-clock/clock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-clock/clock/Makefile -------------------------------------------------------------------------------- /pscheduler-test-clock/clock/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-clock/clock/enumerate -------------------------------------------------------------------------------- /pscheduler-test-clock/clock/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-clock/clock/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-clock/clock/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-dhcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/Makefile -------------------------------------------------------------------------------- /pscheduler-test-dhcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/README.md -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/dhcp/Makefile -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/cli-to-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/dhcp/cli-to-spec -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/dhcp/enumerate -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/participants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/dhcp/participants -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/spec-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/dhcp/spec-format -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/spec-to-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/dhcp/spec-to-cli -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-dhcp/dhcp/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dhcp/dhcp/validate.py -------------------------------------------------------------------------------- /pscheduler-test-disk-to-disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-disk-to-disk/Makefile -------------------------------------------------------------------------------- /pscheduler-test-disk-to-disk/disk-to-disk/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-disk-to-disk/disk-to-disk/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-disk-to-disk/disk-to-disk/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-dns/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/Makefile -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/Makefile -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/cli-to-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/cli-to-spec -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/enumerate -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/participants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/participants -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/result-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/result-format -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/spec-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/spec-format -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/spec-is-valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/spec-is-valid -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/spec-to-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/spec-to-cli -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/test.py -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-dns/dns/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dns/dns/validate.py -------------------------------------------------------------------------------- /pscheduler-test-dot1x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dot1x/Makefile -------------------------------------------------------------------------------- /pscheduler-test-dot1x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dot1x/README.md -------------------------------------------------------------------------------- /pscheduler-test-dot1x/dot1x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dot1x/dot1x/Makefile -------------------------------------------------------------------------------- /pscheduler-test-dot1x/dot1x/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-dot1x/dot1x/enumerate -------------------------------------------------------------------------------- /pscheduler-test-dot1x/dot1x/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-dot1x/dot1x/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-dot1x/dot1x/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-http/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/Makefile -------------------------------------------------------------------------------- /pscheduler-test-http/http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-http/http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/Makefile -------------------------------------------------------------------------------- /pscheduler-test-http/http/cli-to-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/cli-to-spec -------------------------------------------------------------------------------- /pscheduler-test-http/http/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/enumerate -------------------------------------------------------------------------------- /pscheduler-test-http/http/participants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/participants -------------------------------------------------------------------------------- /pscheduler-test-http/http/spec-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/spec-format -------------------------------------------------------------------------------- /pscheduler-test-http/http/spec-to-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/spec-to-cli -------------------------------------------------------------------------------- /pscheduler-test-http/http/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-http/http/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-http/http/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-http/http/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-http/http/validate.py -------------------------------------------------------------------------------- /pscheduler-test-idle/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/Makefile -------------------------------------------------------------------------------- /pscheduler-test-idle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/README.md -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/Makefile -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/cli-to-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/cli-to-spec -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/enumerate -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/participants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/participants -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/spec-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/spec-format -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/spec-to-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/spec-to-cli -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-idle/idle/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idle/idle/validate.py -------------------------------------------------------------------------------- /pscheduler-test-idlebgm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idlebgm/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-idlebgm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idlebgm/Makefile -------------------------------------------------------------------------------- /pscheduler-test-idlebgm/idlebgm/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-idlebgm/idlebgm/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-idlebgm/idlebgm/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-idleex/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idleex/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-idleex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idleex/Makefile -------------------------------------------------------------------------------- /pscheduler-test-idleex/idleex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idleex/idleex/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-idleex/idleex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-idleex/idleex/Makefile -------------------------------------------------------------------------------- /pscheduler-test-idleex/idleex/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-idleex/idleex/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-idleex/idleex/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-latency/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-latency/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-latency/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-latency/Makefile -------------------------------------------------------------------------------- /pscheduler-test-latency/latency/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-latency/latency/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-latency/latency/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-latencybg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-latencybg/Makefile -------------------------------------------------------------------------------- /pscheduler-test-latencybg/latencybg/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-latencybg/latencybg/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-latencybg/latencybg/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-mtu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/Makefile -------------------------------------------------------------------------------- /pscheduler-test-mtu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/README.md -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/Makefile -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/cli-to-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/cli-to-spec -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/enumerate -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/example-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/example-old -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/participants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/participants -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/result-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/result-format -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/spec-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/spec-format -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/spec-is-valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/spec-is-valid -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/spec-to-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/spec-to-cli -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-mtu/mtu/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-mtu/mtu/validate.py -------------------------------------------------------------------------------- /pscheduler-test-netreach/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-netreach/Makefile -------------------------------------------------------------------------------- /pscheduler-test-netreach/netreach/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-netreach/netreach/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-netreach/netreach/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-noop/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-noop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/Makefile -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/Makefile -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/cli-to-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/cli-to-spec -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/enumerate -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/participants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/participants -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/spec-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/spec-format -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/spec-to-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/spec-to-cli -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-noop/noop/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-noop/noop/validate.py -------------------------------------------------------------------------------- /pscheduler-test-openports/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-openports/Makefile -------------------------------------------------------------------------------- /pscheduler-test-openports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-openports/README.md -------------------------------------------------------------------------------- /pscheduler-test-openports/openports/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-openports/openports/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-openports/openports/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-psresponse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-psresponse/Makefile -------------------------------------------------------------------------------- /pscheduler-test-psresponse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-psresponse/README.md -------------------------------------------------------------------------------- /pscheduler-test-psresponse/psresponse/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-psresponse/psresponse/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-psresponse/psresponse/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-rtt/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-rtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/Makefile -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/Makefile -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/cli-to-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/cli-to-spec -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/enumerate -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/participants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/participants -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/result-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/result-format -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/spec-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/spec-format -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/spec-is-valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/spec-is-valid -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/spec-to-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/spec-to-cli -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-rtt/rtt/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-rtt/rtt/validate.py -------------------------------------------------------------------------------- /pscheduler-test-s3throughput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-s3throughput/Makefile -------------------------------------------------------------------------------- /pscheduler-test-s3throughput/s3throughput/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-s3throughput/s3throughput/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-s3throughput/s3throughput/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-simplestream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-simplestream/Makefile -------------------------------------------------------------------------------- /pscheduler-test-simplestream/simplestream/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-simplestream/simplestream/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-simplestream/simplestream/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpget/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-snmpget/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-snmpget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-snmpget/Makefile -------------------------------------------------------------------------------- /pscheduler-test-snmpget/snmpget/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpget/snmpget/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpget/snmpget/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpgetbgm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-snmpgetbgm/Makefile -------------------------------------------------------------------------------- /pscheduler-test-snmpgetbgm/snmpgetbgm/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpgetbgm/snmpgetbgm/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpgetbgm/snmpgetbgm/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpset/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-snmpset/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-snmpset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-snmpset/Makefile -------------------------------------------------------------------------------- /pscheduler-test-snmpset/snmpset/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpset/snmpset/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-snmpset/snmpset/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-throughput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-throughput/Makefile -------------------------------------------------------------------------------- /pscheduler-test-throughput/throughput/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-throughput/throughput/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-throughput/throughput/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-trace/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-trace/.gitattributes -------------------------------------------------------------------------------- /pscheduler-test-trace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-trace/Makefile -------------------------------------------------------------------------------- /pscheduler-test-trace/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-trace/trace/LICENSE -------------------------------------------------------------------------------- /pscheduler-test-trace/trace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-trace/trace/Makefile -------------------------------------------------------------------------------- /pscheduler-test-trace/trace/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-trace/trace/enumerate -------------------------------------------------------------------------------- /pscheduler-test-trace/trace/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-trace/trace/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-trace/trace/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-test-wifibssid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-wifibssid/Makefile -------------------------------------------------------------------------------- /pscheduler-test-wifibssid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-test-wifibssid/README.md -------------------------------------------------------------------------------- /pscheduler-test-wifibssid/wifibssid/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-test-wifibssid/wifibssid/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-test-wifibssid/wifibssid/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bssidscanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-bssidscanner/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-bssidscanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-bssidscanner/README.md -------------------------------------------------------------------------------- /pscheduler-tool-bssidscanner/bssidscanner/run.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pscheduler-tool-bssidscanner/bssidscanner/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bssidscanner/bssidscanner/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bssidscanner/bssidscanner/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-bwctliperf2/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf2/bwctliperf2/duration: -------------------------------------------------------------------------------- 1 | #!/bin/sed -e 1d 2 | { 3 | "duration": "P0D" 4 | } 5 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf2/bwctliperf2/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf2/bwctliperf2/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf2/bwctliperf2/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-bwctliperf3/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf3/bwctliperf3/duration: -------------------------------------------------------------------------------- 1 | #!/bin/sed -e 1d 2 | { 3 | "duration": "P0D" 4 | } 5 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf3/bwctliperf3/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf3/bwctliperf3/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctliperf3/bwctliperf3/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctlping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-bwctlping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-bwctlping/bwctlping/duration: -------------------------------------------------------------------------------- 1 | #!/bin/sed -e 1d 2 | { 3 | "duration": "P0D" 4 | } 5 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctlping/bwctlping/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctlping/bwctlping/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctlping/bwctlping/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltracepath/bwctltracepath/duration: -------------------------------------------------------------------------------- 1 | #!/bin/sed -e 1d 2 | { 3 | "duration": "P0D" 4 | } 5 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltracepath/bwctltracepath/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltracepath/bwctltracepath/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltracepath/bwctltracepath/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltraceroute/bwctltraceroute/duration: -------------------------------------------------------------------------------- 1 | #!/bin/sed -e 1d 2 | { 3 | "duration": "P0D" 4 | } 5 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltraceroute/bwctltraceroute/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltraceroute/bwctltraceroute/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-bwctltraceroute/bwctltraceroute/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-curl-d2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl-d2d/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-curl-d2d/curl-d2d/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl-d2d/curl-d2d/run -------------------------------------------------------------------------------- /pscheduler-tool-curl-d2d/curl-d2d/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-curl-d2d/curl-d2d/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-curl-d2d/curl-d2d/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-curl-d2d/curl-d2d/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-curl/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/curl/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/curl/can-run -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/curl/duration -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/curl/enumerate -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/curl/run -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/run_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/curl/run_http.py -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-curl/curl/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-curl/curl/utilities.py -------------------------------------------------------------------------------- /pscheduler-tool-dhclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dhclient/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-dhclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dhclient/README.md -------------------------------------------------------------------------------- /pscheduler-tool-dhclient/dhclient/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dhclient/dhclient/run -------------------------------------------------------------------------------- /pscheduler-tool-dhclient/dhclient/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dhclient/dhclient/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dhclient/dhclient/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/dnspy/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/dnspy/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/dnspy/can-run -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/dnspy/duration -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/dnspy/enumerate -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-dnspy/dnspy/run -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-dnspy/dnspy/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dublin-traceroute/dublin-traceroute/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dublin-traceroute/dublin-traceroute/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-dublin-traceroute/dublin-traceroute/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-ethr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-ethr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/can-run -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/duration -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/enumerate -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/input/duration: -------------------------------------------------------------------------------- 1 | can-run -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/input/run-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/input/run-0 -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/input/run-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/input/run-1 -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/run -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/run-ethr0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/run-ethr0 -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/run-ethr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ethr/ethr/run-ethr1 -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-ethr/ethr/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-fpingreach/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fpingreach/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-fpingreach/fpingreach/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-fpingreach/fpingreach/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-fpingreach/fpingreach/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-extras 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-fpingreach/fpingreach/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fwmtu/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fwmtu/README.md -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fwmtu/fwmtu/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fwmtu/fwmtu/can-run -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fwmtu/fwmtu/duration -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fwmtu/fwmtu/enumerate -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-fwmtu/fwmtu/run -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-fwmtu/fwmtu/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-globus/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-globus/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-globus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-globus/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-globus/globus/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-globus/globus/can-run -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-globus/globus/duration -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-globus/globus/run -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-globus/globus/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-halfping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-halfping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-halfping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-halfping/README.md -------------------------------------------------------------------------------- /pscheduler-tool-halfping/halfping/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-halfping/halfping/run -------------------------------------------------------------------------------- /pscheduler-tool-halfping/halfping/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-halfping/halfping/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-halfping/halfping/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf2/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf2/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf2/iperf2/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf2/iperf2/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf2/iperf2/can-run -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf2/iperf2/duration -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf2/iperf2/run -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-iperf2/iperf2/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf3/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf3/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf3/iperf3/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf3/iperf3/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf3/iperf3/can-run -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf3/iperf3/duration -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-iperf3/iperf3/run -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | python35 2 | -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-iperf3/iperf3/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-net-snmp-set/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-net-snmp-set/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-net-snmp-set/net-snmp-set/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-net-snmp-set/net-snmp-set/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-net-snmp-set/net-snmp-set/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nmapreach/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nmapreach/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-nmapreach/nmapreach/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nmapreach/nmapreach/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nmapreach/nmapreach/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-extras 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-nmapreach/nmapreach/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nmapscan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nmapscan/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-nmapscan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nmapscan/README.md -------------------------------------------------------------------------------- /pscheduler-tool-nmapscan/nmapscan/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nmapscan/nmapscan/run -------------------------------------------------------------------------------- /pscheduler-tool-nmapscan/nmapscan/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nmapscan/nmapscan/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nmapscan/nmapscan/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nuttcp/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nuttcp/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nuttcp/nuttcp/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nuttcp/nuttcp/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nuttcp/nuttcp/can-run -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nuttcp/nuttcp/duration -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-nuttcp/nuttcp/run -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-nuttcp/nuttcp/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-owping/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-owping/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-owping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-owping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-owping/owping/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-owping/owping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-owping/owping/can-run -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-owping/owping/duration -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-owping/owping/run -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-owping/owping/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-paris-traceroute/paris-traceroute/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-paris-traceroute/paris-traceroute/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-paris-traceroute/paris-traceroute/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-passthrough/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-passthrough/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-passthrough/passthrough/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-passthrough/passthrough/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-passthrough/passthrough/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-ping/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-ping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/ping/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/ping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/ping/can-run -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/ping/duration -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/ping/enumerate -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-ping/ping/run -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-ping/ping/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-powstream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-powstream/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-powstream/powstream/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-powstream/powstream/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-powstream/powstream/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-psclock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psclock/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-psclock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psclock/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-psclock/psclock/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psclock/psclock/run -------------------------------------------------------------------------------- /pscheduler-tool-psclock/psclock/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-psclock/psclock/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-psclock/psclock/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-psclock/psclock/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-pstimer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pstimer/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-pstimer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pstimer/README.md -------------------------------------------------------------------------------- /pscheduler-tool-pstimer/pstimer/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pstimer/pstimer/run -------------------------------------------------------------------------------- /pscheduler-tool-pstimer/pstimer/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-pstimer/pstimer/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-pstimer/pstimer/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-pstimer/pstimer/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-psurl/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psurl/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-psurl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psurl/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psurl/psurl/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psurl/psurl/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psurl/psurl/can-run -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/duration: -------------------------------------------------------------------------------- 1 | #!/bin/sed -e 1d 2 | { 3 | "duration": "P0D" 4 | } 5 | -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/enumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psurl/psurl/enumerate -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-psurl/psurl/run -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-psurl/psurl/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pysnmp/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pysnmp/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pysnmp/pysnmp/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pysnmp/pysnmp/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pysnmp/pysnmp/can-run -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pysnmp/pysnmp/duration -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-pysnmp/pysnmp/run -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-pysnmp/pysnmp/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-s3-benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-s3-benchmark/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-s3-benchmark/s3-benchmark/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-s3-benchmark/s3-benchmark/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-s3-benchmark/s3-benchmark/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-s3-benchmark/s3-benchmark/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-simplestreamer/simplestreamer/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-simplestreamer/simplestreamer/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-simplestreamer/simplestreamer/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-sleep/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/.gitattributes -------------------------------------------------------------------------------- /pscheduler-tool-sleep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-sleep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/README.md -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/sleep/LICENSE -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/sleep/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/can-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/sleep/can-run -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/sleep/duration -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleep/sleep/run -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-sleep/sleep/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-sleepbgm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-sleepbgm/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-sleepbgm/sleepbgm/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-sleepbgm/sleepbgm/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-sleepbgm/sleepbgm/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-snooze/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-snooze/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-snooze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-snooze/README.md -------------------------------------------------------------------------------- /pscheduler-tool-snooze/snooze/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-snooze/snooze/run -------------------------------------------------------------------------------- /pscheduler-tool-snooze/snooze/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-snooze/snooze/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-snooze/snooze/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tcpping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-tcpping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-tcpping/tcpping/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-tcpping/tcpping/run -------------------------------------------------------------------------------- /pscheduler-tool-tcpping/tcpping/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tcpping/tcpping/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tcpping/tcpping/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-tcpping/tcpping/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tracemtu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-tracemtu/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-tracemtu/tracemtu/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tracemtu/tracemtu/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tracemtu/tracemtu/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tracepath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-tracepath/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-tracepath/tracepath/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tracepath/tracepath/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-tracepath/tracepath/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Depends: @, pscheduler-bundle-full 2 | Tests: task 3 | -------------------------------------------------------------------------------- /pscheduler-tool-tracepath/tracepath/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-traceroute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-traceroute/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-traceroute/traceroute/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-traceroute/traceroute/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-traceroute/traceroute/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-twping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-twping/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-twping/twping/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-twping/twping/run -------------------------------------------------------------------------------- /pscheduler-tool-twping/twping/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-twping/twping/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-twping/twping/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /pscheduler-tool-umichwpa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-umichwpa/Makefile -------------------------------------------------------------------------------- /pscheduler-tool-umichwpa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/pscheduler-tool-umichwpa/README.md -------------------------------------------------------------------------------- /pscheduler-tool-umichwpa/umichwpa/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pscheduler-tool-umichwpa/umichwpa/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pscheduler-tool-umichwpa/umichwpa/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /python-daemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-daemon/Makefile -------------------------------------------------------------------------------- /python-flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-flask/Makefile -------------------------------------------------------------------------------- /python-flask/flask-1.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-flask/flask-1.1.1.tar.gz -------------------------------------------------------------------------------- /python-icmperror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-icmperror/Makefile -------------------------------------------------------------------------------- /python-icmperror/icmperror/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-icmperror/icmperror/setup.py -------------------------------------------------------------------------------- /python-icmperror/icmperror/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-icmperror/icmperror/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-itsdangerous/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-itsdangerous/Makefile -------------------------------------------------------------------------------- /python-jsonschema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-jsonschema/Makefile -------------------------------------------------------------------------------- /python-jsonschema/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-jsonschema/unibuild-packaging/deb/docs: -------------------------------------------------------------------------------- 1 | README.rst 2 | -------------------------------------------------------------------------------- /python-jsonschema/unibuild-packaging/deb/patches/series: -------------------------------------------------------------------------------- 1 | six-version 2 | python3-only 3 | -------------------------------------------------------------------------------- /python-jsonschema/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-jsonschema/unibuild-packaging/deb/source/options: -------------------------------------------------------------------------------- 1 | extend-diff-ignore = "^[^/]*[.]egg-info/" 2 | -------------------------------------------------------------------------------- /python-jsonschema/unibuild-packaging/deb/tests/upstream-py3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | py.test-3 -v -s jsonschema 6 | -------------------------------------------------------------------------------- /python-kafka/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-kafka/Makefile -------------------------------------------------------------------------------- /python-nmap3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-nmap3/Makefile -------------------------------------------------------------------------------- /python-nose/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-nose/Makefile -------------------------------------------------------------------------------- /python-nose/nose-1.3.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-nose/nose-1.3.7.tar.gz -------------------------------------------------------------------------------- /python-ntplib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-ntplib/Makefile -------------------------------------------------------------------------------- /python-ntplib/ntplib-0.3.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-ntplib/ntplib-0.3.3.tar.gz -------------------------------------------------------------------------------- /python-ntplib/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-ntplib/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-parse-crontab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-parse-crontab/Makefile -------------------------------------------------------------------------------- /python-pscheduler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pscheduler/Makefile -------------------------------------------------------------------------------- /python-pscheduler/pscheduler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pscheduler/pscheduler/LICENSE -------------------------------------------------------------------------------- /python-pscheduler/pscheduler/pscheduler/limitprocessor/limit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-pscheduler/pscheduler/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-pscheduler/pscheduler/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-pscheduler/pscheduler/unibuild-packaging/deb/tests/control: -------------------------------------------------------------------------------- 1 | Tests: import, jq 2 | -------------------------------------------------------------------------------- /python-pscheduler/pscheduler/unibuild-packaging/deb/tests/import: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import pscheduler 4 | -------------------------------------------------------------------------------- /python-py-amqp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-py-amqp/Makefile -------------------------------------------------------------------------------- /python-py-amqp/py-amqp-5.0.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-py-amqp/py-amqp-5.0.6.tar.gz -------------------------------------------------------------------------------- /python-py-amqp/unibuild-packaging/deb/compat-Debian-11: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-py-amqp/unibuild-packaging/deb/compat-Ubuntu-20: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-py-amqp/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-py-amqp/unibuild-packaging/deb/source/include-binaries: -------------------------------------------------------------------------------- 1 | debian/upstream/signing-key.asc 2 | -------------------------------------------------------------------------------- /python-py-amqp/unibuild-packaging/deb/source/options: -------------------------------------------------------------------------------- 1 | extend-diff-ignore="^[^/]+\.egg-info/" 2 | -------------------------------------------------------------------------------- /python-py-radix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-py-radix/Makefile -------------------------------------------------------------------------------- /python-pyasn1-modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pyasn1-modules/Makefile -------------------------------------------------------------------------------- /python-pyasn1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pyasn1/Makefile -------------------------------------------------------------------------------- /python-pyasn1/pyasn1-0.4.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pyasn1/pyasn1-0.4.5.tar.gz -------------------------------------------------------------------------------- /python-pyjq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pyjq/Makefile -------------------------------------------------------------------------------- /python-pyjq/pyjq-2.4.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pyjq/pyjq-2.4.0.tar.gz -------------------------------------------------------------------------------- /python-pyjq/unibuild-packaging/deb/compat-Debian-11: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-pyjq/unibuild-packaging/deb/compat-Debian-12: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /python-pyjq/unibuild-packaging/deb/compat-Ubuntu-20: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-pyjq/unibuild-packaging/deb/compat-Ubuntu-22: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /python-pyjq/unibuild-packaging/deb/compat-Ubuntu-24: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /python-pyjq/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-pyrsistent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pyrsistent/Makefile -------------------------------------------------------------------------------- /python-pyrsistent/pyrsistent-0.14.11.tar.gz: -------------------------------------------------------------------------------- 1 | pyrsistent-0.14.11.ps.tar.gz -------------------------------------------------------------------------------- /python-pyrsistent/unibuild-packaging/deb/compat-Debian-10: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-pyrsistent/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-pysnmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pysnmp/Makefile -------------------------------------------------------------------------------- /python-pysnmp/pysnmp-4.4.12.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-pysnmp/pysnmp-4.4.12.tar.gz -------------------------------------------------------------------------------- /python-radix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-radix/Makefile -------------------------------------------------------------------------------- /python-radix/py-radix-0.10.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-radix/py-radix-0.10.0.tar.gz -------------------------------------------------------------------------------- /python-radix/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-radix/unibuild-packaging/deb/docs: -------------------------------------------------------------------------------- 1 | README.rst 2 | -------------------------------------------------------------------------------- /python-radix/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-radix/unibuild-packaging/deb/source/lintian-overrides: -------------------------------------------------------------------------------- 1 | wrong-vcs-location-for-dpmt 2 | -------------------------------------------------------------------------------- /python-tzlocal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-tzlocal/Makefile -------------------------------------------------------------------------------- /python-tzlocal/tzlocal-1.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-tzlocal/tzlocal-1.2.2.tar.gz -------------------------------------------------------------------------------- /python-vcversioner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-vcversioner/Makefile -------------------------------------------------------------------------------- /python-vine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-vine/Makefile -------------------------------------------------------------------------------- /python-vine/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /python-vine/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /python-vine/vine-5.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-vine/vine-5.0.0.tar.gz -------------------------------------------------------------------------------- /python-werkzeug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/python-werkzeug/Makefile -------------------------------------------------------------------------------- /rpm-post-wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/rpm-post-wrapper/Makefile -------------------------------------------------------------------------------- /s3-benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/s3-benchmark/Makefile -------------------------------------------------------------------------------- /s3-benchmark/s3-benchmark-1.0.tar.gz: -------------------------------------------------------------------------------- 1 | s3-benchmark-1.0-beta.tar.gz -------------------------------------------------------------------------------- /s3-benchmark/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /s3-benchmark/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /scripts/PDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/README.md -------------------------------------------------------------------------------- /scripts/PDK/archiver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/archiver.md -------------------------------------------------------------------------------- /scripts/PDK/plugin_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/plugin_dev -------------------------------------------------------------------------------- /scripts/PDK/templates/archiver/__PLUGIN_NAME__/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/archiver/__PLUGIN_NAME__/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/archiver/__PLUGIN_NAME__/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/templates/test/Makefile -------------------------------------------------------------------------------- /scripts/PDK/templates/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/templates/test/README.md -------------------------------------------------------------------------------- /scripts/PDK/templates/test/__PLUGIN_NAME__/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/test/__PLUGIN_NAME__/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/test/__PLUGIN_NAME__/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/templates/tool/Makefile -------------------------------------------------------------------------------- /scripts/PDK/templates/tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/templates/tool/README.md -------------------------------------------------------------------------------- /scripts/PDK/templates/tool/__PLUGIN_NAME__/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/tool/__PLUGIN_NAME__/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /scripts/PDK/templates/tool/__PLUGIN_NAME__/unibuild-packaging/deb/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait pscheduler-warmboot 2 | -------------------------------------------------------------------------------- /scripts/PDK/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/test.md -------------------------------------------------------------------------------- /scripts/PDK/tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/PDK/tool.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/deb/check-rpm-deb-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/deb/check-rpm-deb-deps -------------------------------------------------------------------------------- /scripts/deb/fix-compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/deb/fix-compat -------------------------------------------------------------------------------- /scripts/memory-consumption: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/memory-consumption -------------------------------------------------------------------------------- /scripts/postgresql-analyze-locks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/postgresql-analyze-locks -------------------------------------------------------------------------------- /scripts/pylint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/pylint.cfg -------------------------------------------------------------------------------- /scripts/run-pylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/run-pylint -------------------------------------------------------------------------------- /scripts/testbed-stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/testbed-stat -------------------------------------------------------------------------------- /scripts/vagrant/dev-cluster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/scripts/vagrant/dev-cluster/Makefile -------------------------------------------------------------------------------- /tcpping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/tcpping/Makefile -------------------------------------------------------------------------------- /tcpping/tcpping-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/tcpping/tcpping-0.1.tar.gz -------------------------------------------------------------------------------- /tcpping/unibuild-packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /tcpping/unibuild-packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/tcpping/unibuild-packaging/deb/rules -------------------------------------------------------------------------------- /tcpping/unibuild-packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /unibuild-order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfsonar/pscheduler/HEAD/unibuild-order --------------------------------------------------------------------------------