Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mgdm/ringer
in.fingerd but in Rust.
https://github.com/mgdm/ringer
Last synced: about 1 month ago
JSON representation
in.fingerd but in Rust.
- Host: GitHub
- URL: https://github.com/mgdm/ringer
- Owner: mgdm
- Created: 2021-12-24T15:50:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-04T18:56:03.000Z (7 months ago)
- Last Synced: 2024-10-14T12:36:01.121Z (2 months ago)
- Language: Nix
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A socket-activated in.fingerd equivalent written in Rust.
## Why?
The usual answer: why not?
## How?
See [nix](nix/) for how I actually run this, or something like:
```ini
# /etc/systemd/system/[email protected][Unit]
Description=Ringer service
Requires=ringer.socket[Service]
DynamicUser=yes
ExecStart=-/path/to/where/you/put/this/bin/fingerd
ProtectHome=true
StandardInput=socket
StandardOutput=socket# The files end up under /var/lib/ringer if you do this
StateDirectory=ringer
``````ini
# /etc/systemd/system/ringer.socket[Socket]
Accept=yes
ListenStream=79
```