mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
Improved startup script. It now creates the PID file and fixes
the ownership and permissions before actually calling the orionctl program. Bumped PORTREVISION.
This commit is contained in:
parent
be91b104d3
commit
0ff2aadb8a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=56866
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= orion
|
||||
PORTVERSION= 1.5.2
|
||||
PORTREVISION= 12
|
||||
PORTREVISION= 13
|
||||
CATEGORIES= www java
|
||||
MASTER_SITES= http://www.orionserver.com/distributions/ \
|
||||
http://www.atlassian.com/software/orion/downloads/ \
|
||||
|
@ -1,13 +1,26 @@
|
||||
#!/bin/sh
|
||||
# -*- mode: Fundamental; tab-width: 4; -*-
|
||||
# ex:ts=4
|
||||
#
|
||||
# Orion startup script.
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
|
||||
# Set some variables
|
||||
MYSELF=`basename $0`
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
truncate -s 0 %%PID_FILE%%
|
||||
chown %%USER%%:%%GROUP%% %%PID_FILE%%
|
||||
chmod 600 %%PID_FILE%%
|
||||
su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% start > /dev/null" && echo -n ' %%APP_SHORTNAME%%'
|
||||
;;
|
||||
stop)
|
||||
chown %%USER%%:%%GROUP%% %%PID_FILE%%
|
||||
chmod 600 %%PID_FILE%%
|
||||
su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% stop > /dev/null" && echo -n ' %%APP_SHORTNAME%%'
|
||||
;;
|
||||
*)
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= orion
|
||||
PORTVERSION= 1.5.2
|
||||
PORTREVISION= 12
|
||||
PORTREVISION= 13
|
||||
CATEGORIES= www java
|
||||
MASTER_SITES= http://www.orionserver.com/distributions/ \
|
||||
http://www.atlassian.com/software/orion/downloads/ \
|
||||
|
@ -1,13 +1,26 @@
|
||||
#!/bin/sh
|
||||
# -*- mode: Fundamental; tab-width: 4; -*-
|
||||
# ex:ts=4
|
||||
#
|
||||
# Orion startup script.
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
|
||||
# Set some variables
|
||||
MYSELF=`basename $0`
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
truncate -s 0 %%PID_FILE%%
|
||||
chown %%USER%%:%%GROUP%% %%PID_FILE%%
|
||||
chmod 600 %%PID_FILE%%
|
||||
su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% start > /dev/null" && echo -n ' %%APP_SHORTNAME%%'
|
||||
;;
|
||||
stop)
|
||||
chown %%USER%%:%%GROUP%% %%PID_FILE%%
|
||||
chmod 600 %%PID_FILE%%
|
||||
su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% stop > /dev/null" && echo -n ' %%APP_SHORTNAME%%'
|
||||
;;
|
||||
*)
|
||||
|
Loading…
Reference in New Issue
Block a user