summaryrefslogtreecommitdiffstats
path: root/usr/local/sbin/update_file.sh
blob: 5e1e51dc40909c57a3e2999e18228b3220bd7a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh

if [ ! -x `which fetch` ];then
    echo "no fetch found, I think databeestje lost that part"
    exit 0
fi

baseurl='http://pfsense.com/cgi-bin/cvsweb.cgi/pfSense'
urlrev='?rev='
urlcon=';content-type=text%2Fplain'
rev='1'

if [ -z $1 ];then
    echo "No file to update given"
    echo "Usage: `basename $0` /path/to/file [revision]"
    echo "Usage: `basename $0` -all"
    exit 0
fi

if [ "$1" = "-all" ];then
    echo "This will update all .php .js and .inc pages on your pfsense box!"
    FMATCHES=`find /etc/inc/ /usr/local/www /usr/local/captiveportal -name "*.php" -or -name "*.inc" -or -name "*.js"`
elif [ ! -f $1 ];then
    echo "File $1 doesn't exist"
    exit 0
else
    FMATCHES=$1
fi

/etc/rc.conf_mount_rw

for file in $FMATCHES ;do
    if [ ! -z $2 ];then
        rev=$2
        echo "trying to fetch $rev $file"
    else
        echo "trying to fetch latest $file"
    fi
    #echo fetch -o "$file" "$baseurl$file$urlrev$rev$urlcon"
    `which fetch` -o "$file" "$baseurl$file$urlrev$rev$urlcon"
done

/etc/rc.conf_mount_ro
OpenPOWER on IntegriCloud