Add full Oculog codebase

This commit is contained in:
shump
2026-02-12 14:52:37 -06:00
parent 49d8d01643
commit 5c6a17abf3
68 changed files with 34218 additions and 0 deletions

16
clients/ubuntu/debian/rules Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/make -f
%:
dh $@
override_dh_auto_install:
dh_auto_install
# Install client script
install -d $(CURDIR)/debian/oculog-client/opt/oculog
install -m 755 client.py $(CURDIR)/debian/oculog-client/opt/oculog/
# Install systemd service
install -d $(CURDIR)/debian/oculog-client/etc/systemd/system
install -m 644 oculog-client.service $(CURDIR)/debian/oculog-client/etc/systemd/system/
# Create symlink
install -d $(CURDIR)/debian/oculog-client/usr/local/bin
ln -sf /opt/oculog/client.py $(CURDIR)/debian/oculog-client/usr/local/bin/oculog-client