forked from hummypkg/webif
218221c069
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1870 2a923420-c742-0410-a762-8d5b09965624
17 lines
302 B
Bash
Executable File
17 lines
302 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Handle moving the legacy /var/mongoose directory to /webif..
|
|
|
|
if [ -h /mod/webif -a -d /mod/var/mongoose -a ! -h /mod/var/mongoose ]; then
|
|
echo "Relocating web interface files..."
|
|
|
|
cd /mod
|
|
rm webif || exit 1
|
|
mv var/mongoose webif || exit 1
|
|
cd var
|
|
ln -s ../webif mongoose
|
|
fi
|
|
|
|
exit 0
|
|
|