-
- Downloads
intial public version
parents
No related branches found
No related tags found
Showing
- .env.sample 2 additions, 0 deletions.env.sample
- .gitignore 2 additions, 0 deletions.gitignore
- Cargo.lock 0 additions, 0 deletionsCargo.lock
- Cargo.toml 28 additions, 0 deletionsCargo.toml
- LICENSE 4 additions, 0 deletionsLICENSE
- LICENSE-APACHE 176 additions, 0 deletionsLICENSE-APACHE
- LICENSE-MIT 23 additions, 0 deletionsLICENSE-MIT
- README.md 47 additions, 0 deletionsREADME.md
- cleanup-meeting-data.service 7 additions, 0 deletionscleanup-meeting-data.service
- cleanup-meeting-data.timer 9 additions, 0 deletionscleanup-meeting-data.timer
- debian/postinst 19 additions, 0 deletionsdebian/postinst
- debian/postrm 3 additions, 0 deletionsdebian/postrm
- debian/prerm 4 additions, 0 deletionsdebian/prerm
- src/main.rs 70 additions, 0 deletionssrc/main.rs
.env.sample
0 → 100644
.gitignore
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
Cargo.toml
0 → 100644
[package] | |||
name = "cleanup-meeting-data" | |||
version = "0.1.1" | |||
authors = ["Johannes <johannes.barthel@student.kit.edu>"] | |||
edition = "2018" | |||
[dependencies] | |||
dotenv = "0.15.0" | |||
sha-1 = "0.8.2" | |||
url = "2.1.1" | |||
regex = "1.3.7" | |||
reqwest = { version = "0.10.4", features = ["blocking"] } | |||
[package.metadata.deb] | |||
maintainer = "Johannes <johannes.barthel@student.kit.edu>" | |||
copyright = "2020 Johannes <johannes.barthel@student.kit.edu>" | |||
license-file = ["LICENSE", "0"] | |||
depends = "$auto, systemd" | |||
extended-description = """\ | |||
Service to clean forgotten meeting data, e.g. from BigBlueButton's var directory""" | |||
section = "httpd" | |||
priority = "optional" | |||
assets = [ | |||
["cleanup-meeting-data.service", "/lib/systemd/system/", "644"], | |||
["cleanup-meeting-data.timer", "/lib/systemd/system/", "644"], | |||
["target/release/cleanup-meeting-data", "usr/bin/", "755"] | |||
] | |||
maintainer-scripts = "debian" |
LICENSE
0 → 100644
LICENSE-APACHE
0 → 100644
LICENSE-MIT
0 → 100644
README.md
0 → 100644
cleanup-meeting-data.service
0 → 100644
cleanup-meeting-data.timer
0 → 100644
debian/postinst
0 → 100644
debian/postrm
0 → 100644
debian/prerm
0 → 100644
src/main.rs
0 → 100644
Please register or sign in to comment