Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dvblast
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
dvblast
Commits
3d6a18db
Commit
3d6a18db
authored
Jun 01, 2010
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initscript
parent
1a1caa29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
95 additions
and
1 deletion
+95
-1
Makefile
Makefile
+4
-1
dvblast.rc
dvblast.rc
+91
-0
No files found.
Makefile
View file @
3d6a18db
...
...
@@ -15,6 +15,7 @@ OBJ_DVBLASTCTL = util.o dvblastctl.o
PREFIX
?=
/usr/local
BIN
=
$(DESTDIR)
/
$(PREFIX)
/bin
ETC
=
$(DESTDIR)
/
$(PREFIX)
/etc/init.d
MAN
=
$(DESTDIR)
/
$(PREFIX)
/share/man/man1
all
:
dvblast dvblastctl
...
...
@@ -31,12 +32,14 @@ clean:
install
:
all
@
install
-d
$(BIN)
@
install
-d
$(ETC)
@
install
-d
$(MAN)
@
install
dvblast dvblastctl dvblast_mmi.sh
$(BIN)
@
install
dvblast.rc
$(ETC)
/dvblast
@
install
-m
644 dvblast.1
$(MAN)
uninstall
:
@
rm
$(BIN)
/dvblast
$(BIN)
/dvblastctl
$(BIN)
/dvblast_mmi.sh
$(MAN)
/dvblast.1
@
rm
$(BIN)
/dvblast
$(BIN)
/dvblastctl
$(BIN)
/dvblast_mmi.sh
$(
ETC)
/dvblast
$(
MAN)
/dvblast.1
dist
:
(
cd
../
&&
\
...
...
dvblast.rc
0 → 100644
View file @
3d6a18db
#! /bin/bash
#
# dvblast Start/Stop the dvblast daemon.
#
# chkconfig: 2345 90 55
# description: dvblast is a fast DVB-S/C/T remuxer and restreamer.
# processname: dvblast
# config: /etc/dvblast.d
# pidfile: /var/run/dvblast.pid
# Source function library.
.
/etc/init.d/functions
.
/etc/sysconfig/dvblast
prog
=
dvblast
start
()
{
echo
-n
$"Starting
$prog
: "
if
[
-e
/var/lock/subsys/dvblast
]
;
then
if
[
-e
/var/run/dvblast.pid
]
&&
[
-e
/proc/
`
cat
/var/run/dvblast.pid
`
]
;
then
echo
-n
$"cannot start dvblast: dvblast is already running."
;
failure
$"cannot start dvblast: dvblast is already running."
;
echo
return
1
fi
fi
daemon dvblast
$DVBLASTARGS
RETVAL
=
$?
echo
[
$RETVAL
-eq
0
]
&&
touch
/var/lock/subsys/dvblast
;
return
$RETVAL
}
stop
()
{
echo
-n
$"Stopping
$prog
: "
if
[
!
-e
/var/lock/subsys/dvblast
]
;
then
echo
-n
$"cannot stop dvblast: dvblast is not running."
failure
$"cannot stop dvblast: dvblast is not running."
echo
return
1
;
fi
killproc dvblast
RETVAL
=
$?
echo
[
$RETVAL
-eq
0
]
&&
rm
-f
/var/lock/subsys/dvblast
;
return
$RETVAL
}
status
()
{
}
restart
()
{
stop
start
}
reload
()
{
echo
-n
$"Reloading dvblast daemon configuration: "
killproc dvblast
-HUP
RETVAL
=
$?
echo
return
$RETVAL
}
case
"
$1
"
in
start
)
start
;;
stop
)
stop
;;
status
)
status
;;
restart
)
restart
;;
reload
)
reload
;;
*
)
$echo
"Usage:
$0
[start|stop|status|restart|reload]"
exit
1
;;
esac
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment