mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-05 00:51:05 +01:00

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.
19 lines
309 B
Makefile
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
|
|
|
|
|