-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
44 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ $RECYCLE.BIN/ | |
.Trashes | ||
|
||
# Project | ||
*.csv | ||
.idea | ||
docker-compose.yml | ||
uaProxy | ||
|
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/sh /etc/rc.common | ||
# Copyright (C) 2018 Onion Corporation | ||
START=90 | ||
USE_PROCD=1 | ||
|
||
PROG="uaProxy" | ||
|
||
start_service() { | ||
procd_open_instance | ||
procd_set_param command $PROG | ||
# procd_append_param command --stats | ||
procd_set_param respawn # respawn the service if it exits | ||
procd_set_param stdout 1 # forward stdout of the command to logd | ||
procd_set_param stderr 1 # same for stderr | ||
procd_close_instance | ||
} |
File renamed without changes