Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CDEK Development
tariff-calculator
Commits
c3c78bd7
Commit
c3c78bd7
authored
8 years ago
by
sokolov
Browse files
Options
Download
Email Patches
Plain Diff
скрипт для запуска frontend
parent
7a65e34a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/calculator_front.sh
+54
-0
frontend/calculator_front.sh
with
54 additions
and
0 deletions
+54
-0
frontend/calculator_front.sh
0 → 100644
View file @
c3c78bd7
#!/bin/bash
DAEMON
=
"nodejs node-server.js"
NAME
=
calculator-frontend
DESC
=
"Tariff calculator frontend"
PIDFILE
=
$NAME
.pid
case
"
$1
"
in
start
)
printf
"%-50s"
"Starting
$NAME
..."
PID
=
`
$DAEMON
>
$NAME
.log 2>&1 &
echo
$!
`
#echo "Saving PID" $PID " to " $PIDFILE
if
[
-z
$PID
]
;
then
printf
"%s
\n
"
"Fail"
else
echo
$PID
>
$PIDFILE
printf
"%s
\n
"
"Ok"
fi
;;
status
)
printf
"%-50s"
"Checking
$NAME
..."
if
[
-f
$PIDFILE
]
;
then
PID
=
`
cat
$PIDFILE
`
if
[
-z
"
`
ps axf |
grep
${
PID
}
|
grep
-v
grep
`
"
]
;
then
printf
"%s
\n
"
"Process dead but pidfile exists"
else
echo
"Running"
fi
else
printf
"%s
\n
"
"Service not running"
fi
;;
stop
)
printf
"%-50s"
"Stopping
$NAME
"
PID
=
`
cat
$PIDFILE
`
if
[
-f
$PIDFILE
]
;
then
kill
-HUP
$PID
printf
"%s
\n
"
"Ok"
rm
-f
$PIDFILE
else
printf
"%s
\n
"
"pidfile not found"
fi
;;
restart
)
$0
stop
$0
start
;;
*
)
echo
"Usage:
$0
{status|start|stop|restart}"
exit
1
esac
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help