-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwipri.service
32 lines (29 loc) · 867 Bytes
/
wipri.service
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Contents of /etc/systemd/system/wipri.service
# This is an example file used for adding 2nd service for wipri for ethernet
#
# Instructions to use this file:
#
# Run install.sh to automatically install wipri either as command, or command + boot (for wifi dev as example)
#
# STOPPING OR DISABLING WIPRI AS A SERVICE (ie: BOOT):
#
# STOP WIPRI SERVICE: sudo systemctl stop wipri
# DISABLE WIPRI SERVICE: sudo systemctl disable wipri
#
# Tutorials/Blog: https://buymeacoffee.com/politictech/posts
#
[Unit]
Description=WiPri Privacy Enhancement
# Change mac
Before=boot.mount
DefaultDependencies=no
# Feel free to change wipri commands below to meet your needs/wants
[Service]
Type=simple
ExecStart=wipri -d wlan0 -w -p
ExecReload=killall -9 wipri;wipri -d wlan0 -w -p
ExecStop=killall -9 wipri
Restart=on-failure
RemainAfterExit=no
[Install]
WantedBy=basic.target