Files
@ e13a747e9c6a
Branch filter:
Location: kallithea/init.d/rhodecode-daemon4 - annotation
e13a747e9c6a
1.3 KiB
text/plain
Migrate to jQuery 1.10.2 from 1.10.1.
Include the minified version of jQuery 1.10.2 instead of 1.10.1. The 1.10.2
files were download via these commands:
$ wget -N http://code.jquery.com/jquery-1.10.2.min.js
$ wget -N http://code.jquery.com/jquery-1.10.2.min.map
Meanwhile, since the Javascript code is covered by GPLv3, we should always
provide an up-to-date version of the source code. I have included it
here by creating the directory jquery-src. I extracted the correct version
of the source with the following commands:
$ git clone git://github.com/jquery/jquery.git
$ git checkout 1.10.2
which is what the jQuery website instructs to do: http://jquery.com/download/
This repository is mirrorred at https://kallithea-scm.org/repos/mirror/jquery/ .
Include the minified version of jQuery 1.10.2 instead of 1.10.1. The 1.10.2
files were download via these commands:
$ wget -N http://code.jquery.com/jquery-1.10.2.min.js
$ wget -N http://code.jquery.com/jquery-1.10.2.min.map
Meanwhile, since the Javascript code is covered by GPLv3, we should always
provide an up-to-date version of the source code. I have included it
here by creating the directory jquery-src. I extracted the correct version
of the source with the following commands:
$ git clone git://github.com/jquery/jquery.git
$ git checkout 1.10.2
which is what the jQuery website instructs to do: http://jquery.com/download/
This repository is mirrorred at https://kallithea-scm.org/repos/mirror/jquery/ .
0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 0dc18e9a3150 | #!/bin/bash
###########################################
#### THIS IS AN ARCH LINUX RC.D SCRIPT ####
###########################################
. /etc/rc.conf
. /etc/rc.d/functions
DAEMON=rhodecode
APP_HOMEDIR="/srv"
APP_PATH="$APP_HOMEDIR/$DAEMON"
CONF_NAME="production.ini"
LOG_FILE="/var/log/$DAEMON.log"
PID_FILE="/run/daemons/$DAEMON"
APPL=/usr/bin/paster
RUN_AS="*****"
ARGS="serve --daemon \
--user=$RUN_AS \
--group=$RUN_AS \
--pid-file=$PID_FILE \
--log-file=$LOG_FILE \
$APP_PATH/$CONF_NAME"
[ -r /etc/conf.d/$DAEMON ] && . /etc/conf.d/$DAEMON
if [[ -r $PID_FILE ]]; then
read -r PID < "$PID_FILE"
if [[ $PID && ! -d /proc/$PID ]]; then
unset PID
rm_daemon $DAEMON
fi
fi
case "$1" in
start)
stat_busy "Starting $DAEMON"
export HOME=$APP_PATH
[ -z "$PID" ] && $APPL $ARGS &>/dev/null
if [ $? = 0 ]; then
add_daemon $DAEMON
stat_done
else
stat_fail
exit 1
fi
;;
stop)
stat_busy "Stopping $DAEMON"
[ -n "$PID" ] && kill $PID &>/dev/null
if [ $? = 0 ]; then
rm_daemon $DAEMON
stat_done
else
stat_fail
exit 1
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
status)
stat_busy "Checking $name status";
ck_status $name
;;
*)
echo "usage: $0 {start|stop|restart|status}"
esac
|