source: MondoRescue/trunk/tools/ftp-env@ 1188

Last change on this file since 1188 was 900, checked in by Bruno Cornec, 17 years ago

Huge patch to introduce low level functions that will bw used everywhere (mr_free, mr_asprintf, ...)
Nearly linking now due to that.

  • Property svn:executable set to *
File size: 341 bytes
Line 
1#!/bin/bash
2#
3# Environmeent for ftp
4#
5# $Id$
6#
7
8# BerliOS FTP/SSH setup
9/sbin/ifconfig | egrep -q '10\.3' 2>&1 > /dev/null
10if [ $? = 0 ]; then
11 export DESTMACH=mondo.hpintelco.org
12else
13 export DESTMACH=www.mondorescue.org
14fi
15
16export ACCOUNT=bruno@$DESTMACH
17export DSTDIR=/mondo/ftp
18export FTPSERV="ftp.berlios.de"
19export FTPDIR="/incoming"
Note: See TracBrowser for help on using the repository browser.