]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - tools/make-functions
Installmake bearbeitet. (TESTING)
[people/pmueller/ipfire-2.x.git] / tools / make-functions
CommitLineData
15679d9f
MT
1#!/bin/bash
2############################################################################
3#
4# Beautifying variables & presentation & input output interface
5#
6############################################################################
7
8## Screen Dimentions
9# Find current screen size
10if [ -z "${COLUMNS}" ]; then
11 COLUMNS=$(stty size)
12 COLUMNS=${COLUMNS##* }
13fi
14
15# When using remote connections, such as a serial port, stty size returns 0
16if [ "${COLUMNS}" = "0" ]; then
17 COLUMNS=80
18fi
19
20## Measurements for positioning result messages
21RESULT_WIDTH=4
22TIME_WIDTH=8
23OPT_WIDTH=6
24VER_WIDTH=10
25RESULT_COL=$((${COLUMNS} - $RESULT_WIDTH - 4))
26TIME_COL=$((${RESULT_COL} - $TIME_WIDTH - 5))
27OPT_COL=$((${TIME_COL} - $OPT_WIDTH - 5))
28VER_COL=$((${OPT_COL} - $VER_WIDTH - 5))
29
30## Set Cursur Position Commands, used via echo -e
31SET_RESULT_COL="\\033[${RESULT_COL}G"
32SET_TIME_COL="\\033[${TIME_COL}G"
33SET_OPT_COL="\\033[${OPT_COL}G"
34SET_VER_COL="\\033[${VER_COL}G"
35
36# Define color for messages
37BOLD="\\033[1;39m"
38DONE="\\033[1;32m"
39SKIP="\\033[1;34m"
40WARN="\\033[1;35m"
41FAIL="\\033[1;31m"
42NORMAL="\\033[0;39m"
43
44evaluate() {
45 if [ "$?" -eq "0" ]; then
46 beautify message DONE
47 else
48 EXITCODE=$1
49 shift 1
50 beautify message FAIL
51 $*
52 if [ $EXITCODE -ne "0" ]; then
53 exit $EXITCODE
54 fi
55 fi
56}
57
58position_cursor()
59{
60 # ARG1=starting position on screen
61 # ARG2=string to be printed
62 # ARG3=offset, negative for left movement, positive for right movement, relative to ARG1
63 # For example if your starting position is column 50 and you want to print Hello three columns to the right
64 # of your starting position, your call will look like this:
65 # position_cursor 50 "Hello" 3 (you'll get the string Hello at position 53 (= 50 + 3)
66 # If on the other hand you want your string "Hello" to end three columns to the left of position 50,
67 # your call will look like this:
68 # position_cursor 50 "Hello" -3 (you'll get the string Hello at position 42 (= 50 - 5 -3)
69 # If you want to start printing at the exact starting location, use offset 0
70
71 START=$1
72 STRING=$2
73 OFFSET=$3
74
75 STRING_LENGTH=${#STRING}
76
77 if [ ${OFFSET} -lt 0 ]; then
78 COL=$((${START} + ${OFFSET} - ${STRING_LENGTH}))
79 else
80 COL=$((${START} + ${OFFSET}))
81 fi
82
83 SET_COL="\\033[${COL}G"
84
85 echo $SET_COL
86} # End of position_cursor()
87
88
89beautify()
90{
91 # Commands: build_stage, make_pkg, message, result
92 case "$1" in
93 message)
94 case "$2" in
95 DONE)
96 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
97 ;;
98 WARN)
99 echo -ne "${WARN}${3}${NORMAL}${SET_RESULT_COL}[${WARN} WARN ${NORMAL}]\n"
100 ;;
101 FAIL)
102 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
103 ;;
104 SKIP)
105 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
106 ;;
107 esac
108 ;;
109 build_stage)
110 MESSAGE=$2
111 echo -ne "${BOLD}*** ${MESSAGE}${SET_VER_COL} version${SET_OPT_COL} options"
112 echo -ne "${SET_TIME_COL} time (sec)${SET_RESULT_COL} status${NORMAL}\n"
113 ;;
114 make_pkg)
115 echo "$2" | while read PKG_VER PROGRAM OPTIONS
116 do
117 SET_VER_COL_REAL=`position_cursor $OPT_COL $PKG_VER -3`
118
119 if [ "$OPTIONS" == "" ]; then
120 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
121 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
122 else
123 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
124 echo -ne "${NORMAL} ]${SET_OPT_COL}[ ${BOLD}${OPTIONS}"
125 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
126 fi
127 done
128 ;;
129 result)
130 RESULT=$2
131
132 if [ ! $3 ]; then
133 PKG_TIME=0
134 else
135 PKG_TIME=$3
136 fi
137
138 SET_TIME_COL_REAL=`position_cursor $RESULT_COL $PKG_TIME -3`
139 case "$RESULT" in
140 DONE)
141 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
142 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
143 ;;
144 FAIL)
145 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
146 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
147 ;;
148 SKIP)
149 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
150 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
151 ;;
152 esac
153 ;;
154 esac
155} # End of beautify()
156
157
158get_pkg_ver()
159{
160 PKG_VER=`grep ^VER $1 | awk '{print $3}'`
161
162 if [ -z $PKG_VER ]; then
163 PKG_VER=`grep "Exp " $1 | awk '{print $4}'`
164 fi
165
166 if [ ${#PKG_VER} -gt $VER_WIDTH ]; then
167 # If a package version number is greater than $VER_WIDTH, we keep the first 4 characters
168 # and replace enough characters to fit the resulting string on the screen. We'll replace
169 # the extra character with .. (two dots). That's why the "+ 2" in the formula below.
170 # Example: if we have a 21-long version number that we want to fit into a 10-long space,
171 # we have to remove 11 characters. But if we replace 11 characters with 2 characters, we'll
172 # end up with a 12-character long string. That's why we replace 12 characters with ..
173 REMOVE=`expr substr "$PKG_VER" 4 $[ ${#PKG_VER} - $VER_WIDTH + 2 ]`
174 PKG_VER=`echo ${PKG_VER/$REMOVE/..}`
175 fi
176
177 echo "$PKG_VER"
178} # End of get_pkg_ver()
179
180if [ 'x86_64' = $MACHINE -o 'i686' = $MACHINE -o 'i586' = $MACHINE ]; then
181 echo "`date -u '+%b %e %T'`: Machine is iX86 (or equivalent)" >> $LOGFILE
182 MACHINE=i586
183 BUILDTARGET=i586-pc-linux-gnu
9b0ff0a0 184 CFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
b4b6bcdb 185 CXXFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
15679d9f
MT
186 C2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
187 CXX2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
188else
189 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE" >> $LOGFILE
190 exit 1
191fi
192
193# Define immediately
194stdumount() {
b4b6bcdb
MT
195 umount $BASEDIR/build/sys 2>/dev/null;
196 umount $BASEDIR/build/dev/shm 2>/dev/null;
15679d9f 197 umount $BASEDIR/build/dev/pts 2>/dev/null;
b4b6bcdb 198 umount $BASEDIR/build/dev 2>/dev/null;
15679d9f
MT
199 umount $BASEDIR/build/proc 2>/dev/null;
200 umount $BASEDIR/build/install/mnt 2>/dev/null;
201 umount $BASEDIR/build/usr/src/cache 2>/dev/null;
202 umount $BASEDIR/build/usr/src/ccache 2>/dev/null;
203 umount $BASEDIR/build/usr/src/config 2>/dev/null;
204 umount $BASEDIR/build/usr/src/doc 2>/dev/null;
205 umount $BASEDIR/build/usr/src/html 2>/dev/null;
206 umount $BASEDIR/build/usr/src/langs 2>/dev/null;
207 umount $BASEDIR/build/usr/src/lfs 2>/dev/null;
208 umount $BASEDIR/build/usr/src/log 2>/dev/null;
209 umount $BASEDIR/build/usr/src/src 2>/dev/null;
210}
211
212exiterror() {
213 stdumount
214 for i in `seq 0 7`; do
215 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
216 losetup -d /dev/loop${i} 2>/dev/null
217 fi;
218 done
219 echo -e "\nERROR: $*"
220 echo " Check $LOGFILE for errors if applicable"
221 exit 1
222}
223
224entershell() {
225 if [ ! -e $BASEDIR/build/usr/src/lfs/ ]; then
226 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/"
227 fi
228 echo "Entering to a shell inside LFS chroot, go out with exit"
229 chroot $LFS /tools/bin/env -i HOME=/root TERM=$TERM PS1='\u:\w\$ ' \
230 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
231 VERSION=$VERSION CONFIG_ROOT=$CONFIG_ROOT \
232 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
233 CFLAGS="$CF2LAGS" CXXFLAGS="$CXX2FLAGS" \
234 CCACHE_DIR=/usr/src/ccache \
235 CCACHE_HASHDIR=1 \
236 KVER=$KVER \
237 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
238 KGCC="ccache /usr/bin/gcc" \
239 /tools/bin/bash
240 if [ $? -ne 0 ]; then
241 beautify message FAIL
242 exiterror "chroot error"
243 else
244 stdumount
245 fi
246}
247
248############################################################################
249# #
250# Necessary shell functions #
251# #
252############################################################################
253#
254# Common checking before entering the chroot and compilling
255#
256# Return:0 caller can continue
257# :1 skip (nothing to do)
258# or fail if no script file found
259#
260lfsmakecommoncheck()
261{
262
263 # Script present?
264 if [ ! -f $BASEDIR/lfs/$1 ]; then
265 exiterror "No such file or directory: $BASEDIR/$1"
266 fi
267
268 local PKG_VER=`get_pkg_ver $BASEDIR/lfs/$1`
269 beautify make_pkg "$PKG_VER $*"
270
271 # Script slipped?
272 local i
273 for i in $SKIP_PACKAGE_LIST
274 do
275 if [ "$i" == "$1" ]; then
276 beautify result SKIP
277 return 1;
278 fi
279 done
280
281 echo -ne "`date -u '+%b %e %T'`: Building $* " >> $LOGFILE
282
283 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t " download >> $LOGFILE 2>&1
284 if [ $? -ne 0 ]; then
285 exiterror "Download error in $1"
286 fi
287
288 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
289 if [ $? -ne 0 ]; then
290 exiterror "md5sum error in $1, check file in cache or signature"
291 fi
292
293 return 0 # pass all!
294} # End of lfsmakecommoncheck()
295
296lfsmake1() {
297 lfsmakecommoncheck $*
298 [ $? == 1 ] && return 0
299
300 local PKG_TIME_START=`date +%s`
301
302 cd $BASEDIR/lfs && make -f $* BUILDTARGET=$BUILDTARGET \
303 MACHINE=$MACHINE \
304 LFS_BASEDIR=$BASEDIR \
305 ROOT=$LFS \
306 KVER=$KVER \
307 MAKETUNING=$MAKETUNING \
308 install >> $LOGFILE 2>&1
309 local COMPILE_SUCCESS=$?
310 local PKG_TIME_END=`date +%s`
311
312 if [ $COMPILE_SUCCESS -ne 0 ]; then
313 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
314 exiterror "Building $*";
315 else
316 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
317 fi
318
319 return 0
320}
321
322lfsmake2() {
323 lfsmakecommoncheck $*
324 [ $? == 1 ] && return 0
325
326 local PKG_TIME_START=`date +%s`
327 chroot $LFS /tools/bin/env -i HOME=/root \
328 TERM=$TERM PS1='\u:\w\$ ' \
329 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
330 VERSION=$VERSION \
331 CONFIG_ROOT=$CONFIG_ROOT \
332 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
333 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
334 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
335 KVER=$KVER MAKETUNING=$MAKETUNING \
336 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
c8ead4a5 337 IPFVER="$IPFVER" \
15679d9f
MT
338 /tools/bin/bash -x -c "cd /usr/src/lfs && \
339 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
340 local COMPILE_SUCCESS=$?
341 local PKG_TIME_END=`date +%s`
342
343 if [ $COMPILE_SUCCESS -ne 0 ]; then
344 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
345 exiterror "Building $*";
346 else
347 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
348 fi
349
350 return 0
351}
352
353ipfiremake() {
354 lfsmakecommoncheck $*
355 [ $? == 1 ] && return 0
356
357 local PKG_TIME_START=`date +%s`
358 chroot $LFS /tools/bin/env -i HOME=/root \
359 TERM=$TERM PS1='\u:\w\$ ' \
360 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
361 VERSION=$VERSION \
362 CONFIG_ROOT=$CONFIG_ROOT \
363 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
364 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
365 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
366 KVER=$KVER MAKETUNING=$MAKETUNING \
367 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
c8ead4a5 368 IPFVER="$IPFVER" \
15679d9f
MT
369 /bin/bash -x -c "cd /usr/src/lfs && \
370 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
371
372 local COMPILE_SUCCESS=$?
373 local PKG_TIME_END=`date +%s`
374
375 if [ $COMPILE_SUCCESS -ne 0 ]; then
376 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
377 exiterror "Building $*";
378 else
379 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
380 fi
381 return 0
382}
383
384ipfiredist() {
385 if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
386 echo "`date -u '+%b %e %T'`: Packaging $1" | tee -a $LOGFILE
387 chroot $LFS /tools/bin/env -i HOME=/root \
388 TERM=$TERM PS1='\u:\w\$ ' \
389 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
390 VERSION=$VERSION \
391 CONFIG_ROOT=$CONFIG_ROOT \
392 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
393 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
394 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
c8ead4a5 395 KVER=$KVER IPFVER="$IPFVER" \
15679d9f
MT
396 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
397 /bin/bash -x -c "cd /usr/src/lfs && \
398 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
399 if [ $? -ne 0 ]; then
400 exiterror "Packaging $1"
401 fi
402 else
403 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
404 fi
405 return 0
406}
407
408installmake() {
41921bd9
MT
409 lfsmakecommoncheck $*
410 [ $? == 1 ] && return 0
411
412 local PKG_TIME_START=`date +%s`
15679d9f
MT
413 chroot $LFS /tools/bin/env -i HOME=/root \
414 TERM=$TERM PS1='\u:\w\$ ' \
4da401bc 415 PATH=/opt/i586-uClibc/i586-linux-uclibc/bin:/opt/i586-uClibc/bin:/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
15679d9f
MT
416 VERSION=$VERSION \
417 CONFIG_ROOT=$CONFIG_ROOT \
418 LFS_PASS="install" \
419 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
420 CFLAGS="-Os" CXXFLAGS="-Os" \
421 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
c8ead4a5 422 KVER=$KVER IPFVER="$IPFVER" \
15679d9f
MT
423 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
424 /bin/bash -x -c "cd /usr/src/lfs && \
425 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
41921bd9
MT
426
427 local COMPILE_SUCCESS=$?
428 local PKG_TIME_END=`date +%s`
429
430 if [ $COMPILE_SUCCESS -ne 0 ]; then
431 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
432 exiterror "Building $*";
15679d9f 433 else
41921bd9 434 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
15679d9f
MT
435 fi
436 return 0
437}
438
439update_logs() {
440 tar cfz log/ipfire-logs-`date +'%Y-%m-%d-%H:%M'`.tgz log/_build.*
441 rm -f log/_build.*
442}
443
444batch_script() {
445 echo -ne "### UPDATE LOGS"
446 update_logs
447 evaluate 1
448
449 if [ "$IPFIRE_REBUILD" -eq "0" ]; then
450 echo -ne "### SAVING TIME"
451 export IPFIRE_START_TIME=`date`
452 evaluate 1
453
454 echo "### RUNNING SVN-UPDATE"
455 $0 svn update
456 evaluate 1 mail SVNUPDATE
457
458 echo "### EXPORT SOURCES"
459 $0 svn dist
460 evaluate 1 mail SVNDIST
461
462 echo "### RUNNING PREFETCH"
463 $0 prefetch | grep -q "md5 difference"
464 evaluate 1 mail PREFETCH
465 fi
466
467 echo "### RUNNING BUILD"
468 $0 build
469 evaluate 1 mail ERROR
470
471 echo "### UPLOADING ISO"
472 $0 upload iso
473 evaluate 1 mail ISO
474
475 echo -ne "### UPLOADING PAKS"
476 $0 upload paks
477 evaluate 1 mail PAKS
478
479 echo -n "${BOLD}***SUCCESS!${NORMAL}"
480 evaluate 0 mail SUCCESS
481 exit 0
482}
483
484watch_screen() {
485 echo -e "${BOLD}Exit with Ctrl+A, Ctrl+D.${NORMAL}"
486 sleep 0.5
487 screen -x ipfire
488}
489
490mail() {
491 chmod 755 tools/sendEmail
492 ATTACHMENT=/tmp/ipfire-build-logs-R$SVN_REVISION.tar.gz
493 case "$1" in
494 success)
495 SUBJECT="SUCCESS: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
496 cat <<END > /tmp/ipfire_mail_body
497Building IPFire on `hostname` in Revision $SVN_REVISION was successfull!
498You can find the ISO on your ftp server.
499
500Statistics:
501-----------
502Started: $IPFIRE_START_TIME
503Finished: `date`
504
505Best Regards
506Your IPFire-Build-Script
507
508END
509 echo -ne "${BOLD}***Sending success message${NORMAL}"
510 ;;
511 *)
512 SUBJECT="ERROR $1: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
513 cat <<END > /tmp/ipfire_mail_body
514When I was building IPFire on `hostname`, I have found an ERROR with name $1!
515Here you can see the logs and detect the reason for this error.
516
517Best Regards
518Your IPFire-Build-Script
519
520
521Here is a summary... The full logs are in the attachment.
522---------------------------------------------------------
523
524`tail log/_*`
525END
526 echo -ne "${BOLD}***Sending error message${NORMAL}"
527 ;;
528 esac
529 tar cfz $ATTACHMENT log/_build*
530 cat /tmp/ipfire_mail_body | tools/sendEmail -q \
531 -f $IPFIRE_MAIL_FROM \
532 -t $IPFIRE_MAIL_REPORT \
533 -u $SUBJECT \
534 -s $IPFIRE_MAIL_SERVER:25 \
535 -xu $IPFIRE_MAIL_USER \
536 -xp $IPFIRE_MAIL_PASS \
537 -l log/_build.mail.log \
538 -a $ATTACHMENT # -v
539 if [ "$?" -eq "0" ]; then
540 beautify message DONE
541 else
542 beautify message FAIL
543 fi
544 rm -f /tmp/ipfire_mail_body $ATTACHMENT
545}
546
547make_config() {
548 echo -e "This is for creating your configuration..."
549 echo -e "We will need some input:"
550 echo -e ""
551 echo -n "FTP-DOMAIN FOR THE ISO: "
552 read IPFIRE_FTP_URL_EXT
553 echo -n "PATH FOR $IPFIRE_FTP_URL_EXT: "
554 read IPFIRE_FTP_PATH_EXT
555 echo -n "USERNAME FOR $IPFIRE_FTP_URL_EXT: "
556 read IPFIRE_FTP_USER_EXT
557 echo -n "PASSWORD FOR $IPFIRE_FTP_URL_EXT: "
558 read -s IPFIRE_FTP_PASS_EXT
559 echo ""
560 echo "(You can leave this empty if the cache-server is the same as your iso-server.)"
561 echo -n "FTP-DOMAIN FOR THE CACHE: "
562 read IPFIRE_FTP_URL_INT
563 echo -n "PATH FOR $IPFIRE_FTP_URL_INT: "
564 read IPFIRE_FTP_PATH_INT
565 if [ $IPFIRE_FTP_URL_INT ]; then
566 echo -n "USERNAME FOR $IPFIRE_FTP_URL_INT: "
567 read IPFIRE_FTP_USER_INT
568 echo -n "PASSWORD FOR $IPFIRE_FTP_URL_INT: "
569 read -s IPFIRE_FTP_PASS_INT
570 else
571 IPFIRE_FTP_URL_INT=$IPFIRE_FTP_URL_EXT
572 IPFIRE_FTP_USER_INT=$IPFIRE_FTP_USER_EXT
573 IPFIRE_FTP_PASS_INT=$IPFIRE_FTP_PASS_EXT
574 echo "USERNAME FOR $IPFIRE_FTP_URL_INT: $IPFIRE_FTP_USER_INT"
575 echo "PASSWORD FOR $IPFIRE_FTP_URL_INT: !HIDDEN!"
576 fi
577 echo ""
578 echo "(You can leave this empty if the pak-server is the same as your iso-server.)"
579 echo -n "FTP-DOMAIN FOR THE PAKS: "
580 read IPFIRE_FTP_URL_PAK
581 echo -n "PATH FOR $IPFIRE_FTP_URL_PAK: "
582 read IPFIRE_FTP_PATH_PAK
583 if [ $IPFIRE_FTP_URL_PAK ]; then
584 echo -n "USERNAME FOR $IPFIRE_FTP_URL_PAK: "
585 read IPFIRE_FTP_USER_PAK
586 echo -n "PASSWORD FOR $IPFIRE_FTP_URL_PAK: "
587 read -s IPFIRE_FTP_PASS_PAK
588 else
589 IPFIRE_FTP_URL_PAK=$IPFIRE_FTP_URL_EXT
590 IPFIRE_FTP_USER_PAK=$IPFIRE_FTP_USER_EXT
591 IPFIRE_FTP_PASS_PAK=$IPFIRE_FTP_PASS_EXT
592 echo "USERNAME FOR $IPFIRE_FTP_URL_PAK: $IPFIRE_FTP_USER_PAK"
593 echo "PASSWORD FOR $IPFIRE_FTP_URL_PAK: !HIDDEN!"
594 fi
595 echo ""
596 echo -e "ONE OR MORE EMAIL ADDRESS(ES) TO WHICH THE REPORTS WILL BE SENT"
597 echo -e "(seperated by comma)"
598 read IPFIRE_MAIL_REPORT
599 echo -n "EMAIL FROM: "
600 read IPFIRE_MAIL_FROM
601 echo -n "EMAIL SERVER: "
602 read IPFIRE_MAIL_SERVER
603 echo -n "LOGIN TO MAIL SERVER: "
604 read IPFIRE_MAIL_USER
605 echo -n "MAIL PASSWORD: "
606 read -s IPFIRE_MAIL_PASS
607 echo -n "Saving..."
608 cat <<END > .config
609### ISO server
610IPFIRE_FTP_URL_EXT=$IPFIRE_FTP_URL_EXT
611IPFIRE_FTP_PATH_EXT=$IPFIRE_FTP_PATH_EXT
612IPFIRE_FTP_USER_EXT=$IPFIRE_FTP_USER_EXT
613IPFIRE_FTP_PASS_EXT=$IPFIRE_FTP_PASS_EXT
614### cache server
615IPFIRE_FTP_URL_INT=$IPFIRE_FTP_URL_INT
616IPFIRE_FTP_PATH_INT=$IPFIRE_FTP_PATH_INT
617IPFIRE_FTP_USER_INT=$IPFIRE_FTP_USER_INT
618IPFIRE_FTP_PASS_INT=$IPFIRE_FTP_PASS_INT
619### paks server
620IPFIRE_FTP_URL_PAK=$IPFIRE_FTP_URL_PAK
621IPFIRE_FTP_PATH_PAK=$IPFIRE_FTP_PATH_PAK
622IPFIRE_FTP_USER_PAK=$IPFIRE_FTP_USER_PAK
623IPFIRE_FTP_PASS_PAK=$IPFIRE_FTP_PASS_PAK
624### mail reports
625IPFIRE_MAIL_REPORT=$IPFIRE_MAIL_REPORT
626IPFIRE_MAIL_FROM=$IPFIRE_MAIL_FROM
627IPFIRE_MAIL_SERVER=$IPFIRE_MAIL_SERVER
628IPFIRE_MAIL_USER=$IPFIRE_MAIL_USER
629IPFIRE_MAIL_PASS=$IPFIRE_MAIL_PASS
630END
631 beautify message DONE
632}