Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
added systemd unit file and added to makefile and install procedure
- Loading branch information
1 parent
220a9d5
commit feb6d8a
Showing
5 changed files
with
22 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
iptvx (0.5) stable; urgency=low | ||
|
||
* Release of iptvx 0.5 beta | ||
* Release of iptvx 0.6 beta | ||
|
||
-- Jan Kammerath <dev@iptvx.org> Mon, 01 Jan 2017 10:00:00 +0100 | ||
-- Jan Kammerath <dev@iptvx.org> Mon, 01 Jan 2018 10:00:00 +0100 |
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,9 @@ | ||
[Unit] | ||
Description=iptvx epg and recording service | ||
|
||
[Service] | ||
Type=simple | ||
ExecStart=/usr/bin/iptvx --daemon | ||
|
||
[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
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,2 +1,2 @@ | ||
#!/bin/bash | ||
tar --transform "s,./,$1/," -zcvf $1.tar.gz ./app/ ./cfg/ ./src/ ./Makefile | ||
tar --transform "s,./,$1/," -zcvf $1.tar.gz ./app/ ./cfg/ ./src/ ./data/db ./Makefile ./iptvx.service |