fd493d7de8
* Add a init script which uses UCI * Add a default UCI configuration file git-svn-id: svn://svn.openwrt.org/openwrt/packages@8040 3c298f89-4303-0410-b956-a3cf2f4a3e73
41 lines
904 B
Bash
Executable File
41 lines
904 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
START=50
|
|
|
|
start_service () {
|
|
local section="$1"
|
|
config_get path "$section" path
|
|
config_get port "$section" port
|
|
|
|
if [ ! -d "$path" ]; then
|
|
echo "The subversion repository (${path}) does not exist."
|
|
echo "Create a new repository and/or change the path in /etc/config/subversion"
|
|
echo
|
|
echo "Create a new subversion repository with:"
|
|
echo " mkdir -p /srv"
|
|
echo " svnadmin create --fs-type fsfs /srv/svn"
|
|
echo
|
|
echo "Changing the path using UCI (default path is: /var/local/svn):"
|
|
echo " uci set subversion.cfg1.path="/srv/svn""
|
|
echo " uci commit"
|
|
echo " /etc/init.d/subversion restart"
|
|
exit 1
|
|
fi
|
|
|
|
svnserve -d --listen-port ${port} -r ${path}
|
|
}
|
|
|
|
start() {
|
|
config_load "subversion"
|
|
config_foreach start_service subversion
|
|
}
|
|
|
|
stop() {
|
|
killall -9 svnserve
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|