improve data leaks

This commit is contained in:
2026-05-08 17:42:07 +00:00
parent 7bc8f9dfc7
commit 6bf40e2d05
6 changed files with 480 additions and 72 deletions

View File

@@ -6,8 +6,10 @@ install:
@mkdir -p $(BINDIR)
@mkdir -p $(ZNCCONF)
@install -m 755 makeuser $(BINDIR)
@install -m 755 rmuser $(BINDIR)
@install -m 644 welcome-email.tmpl $(BINDIR)
@install -m 700 znccreate.py $(BINDIR)
@install -m 700 zncdelete.py $(BINDIR)
@install -m 600 znc-config-ex.json $(ZNCCONF)
@echo Remember to edit znc-config with your ZNC details and rename $(ZNCCONF)/znc-config-ex.json to $(ZNCCONF)/znc-config.json
@echo ENJOY
@@ -15,8 +17,10 @@ install:
uninstall:
@echo removing the executables from $(BINDIR)
@rm -f $(BINDIR)/makeuser
@rm -f $(BINDIR)/rmuser
@rm -f $(BINDIR)/welcome-email.tmpl
@rm -f $(BINDIR)/znccreate.py
@rm -f $(BINDIR)/zncdelete.py
@echo znc-config.json has not been touched. You will need to manually remove it from $(ZNCCONF)
.PHONY: install uninstall