-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v4.1.3: Fixed and improved message logging system; daemon launchers r…
…eworked.
- Loading branch information
1 parent
0a8ab5a
commit a448c20
Showing
18 changed files
with
1,157 additions
and
815 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
# Contribution by svengo | ||
# Based on a contribution by svengo | ||
# https://github.com/ralphwetzel/theonionbox/issues/24 | ||
|
||
# Run The Onion Box as background service | ||
# https://github.com/ralphwetzel/theonionbox/ | ||
|
||
[Unit] | ||
Description=The Onion Box | ||
Documentation=https://github.com/ralphwetzel/theonionbox/wiki | ||
Documentation=https://github.com/ralphwetzel/theonionbox | ||
After=network.target | ||
|
||
[Service] | ||
Type=simple | ||
User=theonionbox | ||
WorkingDirectory=~ | ||
ExecStart=/srv/theonionbox/theonionbox.py --mode=service | ||
WorkingDirectory=/home/pi/theonionbox | ||
ExecStart=/home/pi/theonionbox/bin/theonionbox | ||
User=debian-tor | ||
SyslogIdentifier=theonionbox | ||
StandardOutput=syslog | ||
StandardError=syslog | ||
Restart=on-failure | ||
RestartSec=10 | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__description__ = 'The Onion Box: WebInterface to monitor Tor node operations.' | ||
__version__ = '4.2.dev0' | ||
__stamp__ = '20180201|210743' | ||
__version__ = '4.1.3' | ||
__stamp__ = '20180212|224700' |
Oops, something went wrong.