opensnitch/daemon/Makefile
Gustavo Iñiguez Goia 6ebd6cca99 added a default configuration file
Some people has asked where they can change the daemon configuration.

As we can't change it from the GUI yet, and we're providing deb
packages, we need to distribute a default config.

That way the users will see it and will be able to customize it.
2020-03-08 20:25:05 +01:00

19 lines
309 B
Makefile

all: opensnitchd
install:
@mkdir -p /etc/opensnitchd/rules
@cp opensnitchd /usr/local/bin/
@cp opensnitchd.service /etc/systemd/system/
@cp default-config.json /etc/opensnitchd/
@systemctl daemon-reload
deps:
@dep ensure
opensnitchd: deps
@go build -o opensnitchd .
clean:
@rm -rf opensnitchd