diff options
author | Silvino Silva <silvino@bk.ru> | 2018-07-16 15:32:41 +0100 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2018-07-16 15:32:41 +0100 |
commit | 214aa23801332d2120df208f9d9042fd51c5f2d3 (patch) | |
tree | afb5b18f789c68bbf577389ed5268cd2f896e66d /core/conf/ports/drivers/httpup | |
parent | bdea1c23d13c417a00b71654670aed309cfa302a (diff) | |
download | doc-214aa23801332d2120df208f9d9042fd51c5f2d3.tar.gz |
dumped new version 0.3.5
Diffstat (limited to 'core/conf/ports/drivers/httpup')
-rwxr-xr-x | core/conf/ports/drivers/httpup | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/core/conf/ports/drivers/httpup b/core/conf/ports/drivers/httpup deleted file mode 100755 index 5c8db84..0000000 --- a/core/conf/ports/drivers/httpup +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# /etc/ports/drivers/httpup: httpup driver script for ports(8) -# - -if [ $# -ne 1 ]; then - echo "usage: $0 <file>" >&2 - exit 1 -fi - -. $1 - -if [ -z "$ROOT_DIR" ]; then - echo "ROOT_DIR not set in '$1'" >&2 - exit 2 -fi -if [ -z "$URL" ]; then - echo "URL not set in '$1'" >&2 - exit 2 -fi - -for REPO in $URL; do - PORT=`echo $REPO | sed -n '/#.*$/s|^.*#||p'` - httpup sync $REPO $ROOT_DIR/$PORT -done - -# End of file. |