Skip to content

Commit

Permalink
Merge pull request #14 from fda77/master
Browse files Browse the repository at this point in the history
various
  • Loading branch information
fda77 committed Feb 13, 2019
2 parents 02cddd8 + 1655b8e commit 10d7616
Show file tree
Hide file tree
Showing 64 changed files with 75 additions and 73 deletions.
9 changes: 5 additions & 4 deletions Makefile
Expand Up @@ -2,7 +2,8 @@
#
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
# Copyright (C) 2005-2006 by Daniel Eiband <eiband@online.de>
# Copyright (C) 2006-2011 by the Freetz developers (http://freetz.org)
# Copyright (C) 2006-2018 by the Freetz developers (http://freetz.org)
# Copyright (C) 2018-2019 by the Freetz developers (https://freetz.github.io)
#
# Licensed under the GPL v2, see the file COPYING in this tarball.

Expand Down Expand Up @@ -121,7 +122,7 @@ endif
# Simple checking of build prerequisites
ifneq ($(NO_PREREQ_CHECK),y)
ifneq (OK,$(shell $(CHECK_PREREQ_TOOL) $$(cat .build-prerequisites) >&2 && echo OK))
$(error Some build prerequisites are missing! Please install the missing packages before trying again. See http://freetz.org/wiki/help/howtos/common/install#NotwendigePakete for installation hints)
$(error Some build prerequisites are missing! Please install the missing packages before trying again. See https://freetz.github.io/wiki/help/howtos/common/install#NotwendigePakete for installation hints)
endif
endif

Expand Down Expand Up @@ -264,7 +265,7 @@ else
@if [ -n "$$(DL_SOURCE$(1)_CONTAINER)" ]; then \
if [ ! -r $$(DL_FW_DIR)/$$(DL_SOURCE$(1)_CONTAINER) ]; then \
if ! $$(DL_TOOL) --no-append-servers $$(DL_FW_DIR) "$$(DL_SOURCE$(1)_CONTAINER)" "$$(DL_SITE$(1))" $$(DL_SOURCE$(1)_CONTAINER_MD5) $$(SILENT); then \
$$(call ERROR,3,Could not download firmware image. See http://trac.freetz.org/wiki/FAQ#Couldnotdownloadfirmwareimage for details.) \
$$(call ERROR,3,Could not download firmware image. See https://freetz.github.io/wiki/FAQ#Couldnotdownloadfirmwareimage for details.) \
fi; \
fi; \
case "$$(DL_SOURCE$(1)_CONTAINER_SUFFIX)" in \
Expand All @@ -278,7 +279,7 @@ else
;; \
esac \
elif ! $$(DL_TOOL) --no-append-servers $$(DL_FW_DIR) "$$(DL_SOURCE$(1))" "$$(DL_SITE$(1))" $$(DL_SOURCE$(1)_MD5) $$(SILENT); then \
$$(call ERROR,3,Could not download firmware image. See http://trac.freetz.org/wiki/FAQ#Couldnotdownloadfirmwareimage for details.) \
$$(call ERROR,3,Could not download firmware image. See https://freetz.github.io/wiki/FAQ#Couldnotdownloadfirmwareimage for details.) \
fi
endif
endif
Expand Down
4 changes: 2 additions & 2 deletions README
Expand Up @@ -21,7 +21,7 @@ in the images/ subdirectory.

For further information please refer to:
- http://www.ip-phone-forum.de/forumdisplay.php?f=525
- http://freetz.org
- https://freetz.github.io

Acknowledgements:
- DS-Mod was originally named after Daniel Eiband's (special thanks to Daniel)
Expand All @@ -30,7 +30,7 @@ Acknowledgements:
but nevertheless honoured here.
- Some time ago the developers decided to rename the project to Freetz.
The reason for doing so can be refered here:
http://trac.freetz.org/wiki/FAQ
https://freetz.github.io/wiki/FAQ

The fun has just begun!
Your Freetz developer team
2 changes: 1 addition & 1 deletion config/ui/kernel.in
Expand Up @@ -27,7 +27,7 @@ config FREETZ_REPLACE_KERNEL

In either case we would highly appreciate it if you could
provide us feedback as to if it works for you or not on either
- Freetz-Trac (http://freetz.org) or
- Freetz at GitHub (https://freetz.github.io) or
- IP-Phone-Forum (http://www.ip-phone-forum.de/forumdisplay.php?f=525)

endif
Expand Down
2 changes: 1 addition & 1 deletion config/ui/patches.in
Expand Up @@ -1394,7 +1394,7 @@ config FREETZ_REPLACE_OPENSSL

config FREETZ_REPLACE_OUTER_UCLIBC_AND_BUSYBOX
bool "Replace uClibc and BusyBox in outer image"
depends on FREETZ_USER_LEVEL_EXPERT && FREETZ_AVM_HAS_INNER_OUTER_FILESYSTEM
depends on FREETZ_AVM_HAS_INNER_OUTER_FILESYSTEM
default y
help
This replaces uClibc and BusyBox in the outer image by
Expand Down
11 changes: 6 additions & 5 deletions fwmod
Expand Up @@ -3,7 +3,8 @@
# Freetz script to modify AVM FRITZ!Box and OEM firmware images
#
# Copyright (C) 2005-2006 Daniel Eiband <eiband@online.de>
# Copyright (C) 2006-2012 by the Freetz developers (http://freetz.org)
# Copyright (C) 2006-2018 by the Freetz developers (http://freetz.org)
# Copyright (C) 2018-2019 by the Freetz developers (https://freetz.github.io)
#
# Licensed under the GPL v2, see the file COPYING in this tarball.
#
Expand Down Expand Up @@ -1700,10 +1701,10 @@ if [ "$DO_PACK" -gt 0 ]; then
[ "$KERNEL_SIZE" -eq 0 ] && error 1 "kernel image is empty"
if [ "$KERNEL_SIZE" -gt "$KERNEL_LIMIT" ]; then
if [ "${FREETZ_AVM_HAS_SEPARATE_FILESYSTEM_IMAGE}" == "y" ]; then
error 1 -b "kernel image is $KERNEL_DIFF bytes too big. See http://freetz.org/wiki/FAQ#Filesystemimagetoobig for details."
error 1 -b "kernel image is $KERNEL_DIFF bytes too big. See https://freetz.github.io/wiki/FAQ#Filesystemimagetoobig for details."
else
if [ "$FORCE_PACK" -eq 0 -a "$DO_ZIP" -eq 0 ]; then
error 1 -b "combined kernel+filesystem image is $KERNEL_DIFF bytes too big. See http://freetz.org/wiki/FAQ#Filesystemimagetoobig for details."
error 1 -b "combined kernel+filesystem image is $KERNEL_DIFF bytes too big. See https://freetz.github.io/wiki/FAQ#Filesystemimagetoobig for details."
fi
if [ "$FORCE_PACK" -gt 0 -a "$DO_ZIP" -eq 0 ]; then
echo0 -b "Use for SDK mode only. See http://wehavemorefun.de/fritzbox/index.php/SDK-Firmware"
Expand Down Expand Up @@ -1762,7 +1763,7 @@ if [ "$DO_PACK" -gt 0 ]; then
[ "$FILESYSTEM_SIZE" -eq 0 ] && error 1 "filesystem image is empty"
if [ "$FILESYSTEM_SIZE" -gt "$FILESYSTEM_LIMIT" ]; then
if [ "$FORCE_PACK" -eq 0 -a "$DO_ZIP" -eq 0 ]; then
error 1 -b "filesystem image is $FILESYSTEM_DIFF bytes too big. See http://freetz.org/wiki/FAQ#Filesystemimagetoobig for details."
error 1 -b "filesystem image is $FILESYSTEM_DIFF bytes too big. See https://freetz.github.io/wiki/FAQ#Filesystemimagetoobig for details."
fi
if [ "$FORCE_PACK" -ne 0 -o "$DO_ZIP" -ne 0 ]; then
echo0 -b "Use for USBroot or NFSroot mode only."
Expand Down Expand Up @@ -1899,7 +1900,7 @@ if [ "$action_names" ]; then

if [ "$FREETZ_REPLACE_OPENSSL" == "y" ] && [ "$FREETZ_LIB_libcrypto" == "y" -o "$FREETZ_LIB_libssl" == "y" ]; then
echo "Caution: Replacing libcrypto or libssl may cause an unusable image."
echo "See http://freetz.org/wiki/FAQ#NachdemFlashenistdasAVM-Webinterfacenichtmehrerreichbar for details."
echo "See https://freetz.github.io/wiki/FAQ#NachdemFlashenistdasAVM-Webinterfacenichtmehrerreichbar for details."
fi

[ "$COPY_FS_DIR" ] || echo -e "done.\n"
Expand Down
2 changes: 1 addition & 1 deletion make/bird/files/README
Expand Up @@ -2,7 +2,7 @@ bird Freetz package


This is a package for Freetz:
http://www.freetz.org/
https://freetz.github.io/

This package contains a binary distribution of the
BIRD Internet Routing Daemon (see COPYING for license terms).
Expand Down
@@ -1,5 +1,5 @@
This is a partial revert of https://git.busybox.net/busybox/commit/libbb/copy_file.c?id=6f58be07485fd2fbac1b828e5f2c631e7d5bc9e4
S. also http://trac.freetz.org/changeset/4289
S. also http://freetz.org/changeset/4289

TODO: document the problem we have without this patch
check if it could be solved in a better way
Expand Down
2 changes: 1 addition & 1 deletion make/debootstrap/files/README
@@ -1,7 +1,7 @@
debootstrap Freetz package

This is a package for Freetz:
http://www.freetz.org/
https://freetz.github.io/

This package may contain a binary distribution of
debootstrap (see COPYING for license terms).
Expand Down
2 changes: 1 addition & 1 deletion make/dns2tcp/files/README
Expand Up @@ -6,5 +6,5 @@ dns2tcp Freetz package
WebInterface
Copyright (C) 2009 Stephan M�ller <sm@chronox.de>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

2 changes: 1 addition & 1 deletion make/downloader/files/README
Expand Up @@ -5,6 +5,6 @@ Downloader CGI Freetz package

(C) 2007 by hermann72pb (ip-phone-forum.de)

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

Support thread: http://www.ip-phone-forum.de/showthread.php?t=134934
2 changes: 1 addition & 1 deletion make/inotify-tools/Config.in
Expand Up @@ -19,5 +19,5 @@ config FREETZ_PACKAGE_INOTIFY_TOOLS
inotifywatch collects filesystem usage statistics and outputs counts of
each inotify event.

Please read http://trac.freetz.org/wiki/packages/inotify_tools for further
Please read https://freetz.github.io/wiki/packages/inotify_tools for further
details. Improper usage can lead to reboots.
2 changes: 1 addition & 1 deletion make/lighttpd/files/README
Expand Up @@ -5,7 +5,7 @@ lighttpd Freetz package

Copyright (C) 2009 Stephan M�ller <sm@chronox.de>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

lighttpd sources are available here:
http://www.lighttpd.net
Expand Down
2 changes: 1 addition & 1 deletion make/minidlna/minidlna.mk
Expand Up @@ -32,7 +32,7 @@ $(PKG)_CONFIGURE_OPTIONS += --with-log-path="/var/log"
$(PKG)_CONFIGURE_OPTIONS += --with-db-path="/tmp/minidlna"
$(PKG)_CONFIGURE_OPTIONS += --with-os-name="FRITZ!Box"
$(PKG)_CONFIGURE_OPTIONS += --with-os-version=""
$(PKG)_CONFIGURE_OPTIONS += --with-os-url="http://freetz.org"
$(PKG)_CONFIGURE_OPTIONS += --with-os-url="https://freetz.github.io"

$(PKG)_CONFIGURE_PRE_CMDS += $(call PKG_MAKE_AC_VARIABLES_PACKAGE_SPECIFIC,lib_avahi_client_avahi_threaded_poll_new)
$(PKG)_CONFIGURE_ENV += minidlna_lib_avahi_client_avahi_threaded_poll_new=no
Expand Down
2 changes: 1 addition & 1 deletion make/mod/files/root/usr/lib/mww/cgi/help.sh
@@ -1,4 +1,4 @@
_cgi_help_url() {
local path=$1
echo "http://freetz.org/wiki${path}"
echo "https://freetz.github.io/wiki${path}"
}
2 changes: 1 addition & 1 deletion make/mod/files/root/usr/share/skin/cuma/skin.sh
Expand Up @@ -28,7 +28,7 @@ skin_body_begin() {
<td id="edge-top-left"></td>
<td id="edge-top">
<div class="version">$(html < /etc/.freetz-version)</div>
<div class="titlebar"><a href="http://freetz.org/" target="_blank" class="logo">Freetz</a>&nbsp;&#64;<a href="/cgi-bin/avm" target="_blank">$(hostname -s|html)</a>&nbsp;<a href="/cgi-bin/about.cgi" target="_blank">&ndash;</a>&nbsp;<span class="title">$title</span>$help &nbsp; &nbsp; $([ "$isauth" = 1 ] && echo "<small>Session timeout: $(date -d @$(( $MOD_HTTPD_SESSIONTIMEOUT + $(date +%s) )) +'%H:%M:%S')</small>") </div>
<div class="titlebar"><a href="https://freetz.github.io/" target="_blank" class="logo">Freetz</a>&nbsp;&#64;<a href="/cgi-bin/avm" target="_blank">$(hostname -s|html)</a>&nbsp;<a href="/cgi-bin/about.cgi" target="_blank">&ndash;</a>&nbsp;<span class="title">$title</span>$help &nbsp; &nbsp; $([ "$isauth" = 1 ] && echo "<small>Session timeout: $(date -d @$(( $MOD_HTTPD_SESSIONTIMEOUT + $(date +%s) )) +'%H:%M:%S')</small>") </div>
</td>
<td id="edge-top-right"></td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion make/mod/files/root/usr/share/skin/legacy/skin.sh
Expand Up @@ -28,7 +28,7 @@ skin_body_begin() {
<td id="edge-top-left"></td>
<td id="edge-top">
<div class="version">$(html < /etc/.freetz-version)</div>
<div class="titlebar"><a href="http://freetz.org/" target="_blank" class="logo">Freetz</a>&nbsp;&#64;<a href="/cgi-bin/avm" target="_blank">$(hostname -s|html)</a>&nbsp;<a href="/cgi-bin/about.cgi" target="_blank">&ndash;</a>&nbsp;<span class="title">$title</span>$help &nbsp; &nbsp; $([ "$isauth" = 1 ] && echo "<small>Session timeout: $(date -d @$(( $MOD_HTTPD_SESSIONTIMEOUT + $(date +%s) )) +'%H:%M:%S')</small>") </div>
<div class="titlebar"><a href="https://freetz.github.io/" target="_blank" class="logo">Freetz</a>&nbsp;&#64;<a href="/cgi-bin/avm" target="_blank">$(hostname -s|html)</a>&nbsp;<a href="/cgi-bin/about.cgi" target="_blank">&ndash;</a>&nbsp;<span class="title">$title</span>$help &nbsp; &nbsp; $([ "$isauth" = 1 ] && echo "<small>Session timeout: $(date -d @$(( $MOD_HTTPD_SESSIONTIMEOUT + $(date +%s) )) +'%H:%M:%S')</small>") </div>
</td>
<td id="edge-top-right"></td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion make/mod/files/root/usr/share/skin/newfreetz/skin.sh
Expand Up @@ -32,7 +32,7 @@ skin_body_begin() {
<div id="title-box-left"></div>
<div id="title-box-mid"></div>
<div id="title-box-right"></div>
<div id="title-box-logo"><a href="http://freetz.org/" target="_blank" class="logo"><img src="/images/newfreetz/freetz_logo.gif"></a></div>
<div id="title-box-logo"><a href="https://freetz.github.io/" target="_blank" class="logo"><img src="/images/newfreetz/freetz_logo.gif"></a></div>
<div id="title-box-fun">the fun has just begun ...</div>
<div id="title-box-version">$(html < /etc/.freetz-version)</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion make/mod/files/root/usr/share/skin/phoenix/skin.sh
Expand Up @@ -27,7 +27,7 @@ skin_body_begin() {
cat << EOF
<div id="world">
<div id="header">
<h1><a href="http://freetz.org/" target="_blank" class="logo">Freetz</a>&nbsp;<a id="about" href="/cgi-bin/about.cgi" target="_blank">&ndash;</a>&nbsp;<span class="title">$title</span></h1>
<h1><a href="https://freetz.github.io/" target="_blank" class="logo">Freetz</a>&nbsp;<a id="about" href="/cgi-bin/about.cgi" target="_blank">&ndash;</a>&nbsp;<span class="title">$title</span></h1>
EOF
if [ -n "$_CGI_HELP" ]; then
echo "<a class='help' href='$(html "$_CGI_HELP")'>$(lang de:"Hilfe" en:"Help")</a>"
Expand Down
2 changes: 1 addition & 1 deletion make/nano/files/README
Expand Up @@ -5,7 +5,7 @@ nano Freetz package

Copyright (c) 2007 Michael Hampicke

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

nano sources are available here: http://www.nano-editor.org/download.php

Expand Down
2 changes: 1 addition & 1 deletion make/netcat/files/README
Expand Up @@ -5,7 +5,7 @@ netcat Freetz package

Copyright (c) 2007 Michael Hampicke

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

netcat sources are available here: http://netcat.sourceforge.net/

Expand Down
2 changes: 1 addition & 1 deletion make/netsnmp/files/README
Expand Up @@ -3,7 +3,7 @@ netsnmp Freetz package
|__ |_) |__ |__ | /
| |\ |__ |__ | /_

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

This package contains a binary distribution of net-snmp daemon
(and some libraries) (see COPYING for license terms).
Expand Down
2 changes: 1 addition & 1 deletion make/openntpd/files/README
Expand Up @@ -5,7 +5,7 @@ openntpd Freetz package

Copyright (c) 2007 Michael Hampicke

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

openntpd sources are available here:
http://www.openntpd.org/ftp.html
Expand Down
2 changes: 1 addition & 1 deletion make/openvpn-cgi/files/README
Expand Up @@ -7,7 +7,7 @@ Copyright (C) 2006 Daniel Eiband <eiband@online.de>
Copyright (C) 2006-2008 Mikolas Bingemer <bingemer@gmx.net>
Copyright (C) 2007, 2008 J�rg Eilers <eilersj@gmx.de>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

OpenVPN sources are available here:
http://openvpn.net/release/
2 changes: 1 addition & 1 deletion make/pppd/files/README
Expand Up @@ -5,7 +5,7 @@ pppd Freetz package

Copyright (C) 2006 Mikolas Bingemer <mickey@netfreaks.org>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

PPPD sources are available at:
http://ppp.samba.org
2 changes: 1 addition & 1 deletion make/privoxy/files/README
Expand Up @@ -5,7 +5,7 @@ Privoxy Freetz package

Copyright (C) 2006-2008 Mikolas Bingemer <bingemer@gmx.net>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

Privoxy sources are available at:
http://www.privoxy.org/
2 changes: 1 addition & 1 deletion make/quagga/files/README
Expand Up @@ -3,7 +3,7 @@ quagga Freetz package
|__ |_) |__ |__ | /
| |\ |__ |__ | /_

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

quagga sources are available at:
http://www.quagga.net/
2 changes: 1 addition & 1 deletion make/rcapid/files/README
Expand Up @@ -3,7 +3,7 @@ rcapid Freetz package
|__ |_) |__ |__ | /
| |\ |__ |__ | /_

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

rcapid is part of isdn4linux. It's homepage along with source download
locations is available at http://www.isdn4linux.de/.
Expand Down
4 changes: 2 additions & 2 deletions make/rrdstats/files/root/usr/lib/cgi-bin/rrdstats.cgi
Expand Up @@ -247,7 +247,7 @@ cat << EOF
<input type="text" name="ciscoepc_tx" size="1" maxlength="1" value="$(html "$RRDSTATS_CISCOEPC_TX")">&nbsp;$(lang de:"Kan&auml;le im Upstream verf&uuml;gbar" en:"channels for upstream available")<br>
<font size="-2">
$(lang de:"Vorsicht: Die Datenbank muss bei &Auml;nderung der Kan&auml;le manuell angepasst werden" en:"Warning: You have to modify the database by your own after changing the count of channels"),&nbsp;
$(lang de:"siehe" en:"see")&nbsp;<a href='$(html "http://freetz.org/wiki/packages/rrdstats#cable")' target='_blank'>Wiki</a>.
$(lang de:"siehe" en:"see")&nbsp;<a href='$(html "https://freetz.github.io/wiki/packages/rrdstats#cable")' target='_blank'>Wiki</a>.
</font>
</p>
<p>
Expand Down Expand Up @@ -294,7 +294,7 @@ cat << EOF
<input type="text" name="fritzdvb_tx" size="1" maxlength="1" value="$(html "$RRDSTATS_FRITZDVB_TX")">&nbsp;$(lang de:"Kan&auml;le im Upstream verf&uuml;gbar" en:"channels for upstream available")<br>
<font size="-2">
$(lang de:"Vorsicht: Die Datenbank muss bei &Auml;nderung der Kan&auml;le manuell angepasst werden" en:"Warning: You have to modify the database by your own after changing the count of channels"),&nbsp;
$(lang de:"siehe" en:"see")&nbsp;<a href='$(html "http://freetz.org/wiki/packages/rrdstats#cable")' target='_blank'>Wiki</a>.
$(lang de:"siehe" en:"see")&nbsp;<a href='$(html "https://freetz.github.io/wiki/packages/rrdstats#cable")' target='_blank'>Wiki</a>.
</font>
</p>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion make/rrdtool/files/README
Expand Up @@ -3,7 +3,7 @@ Rrdtool Freetz package
|__ |_) |__ |__ | /
| |\ |__ |__ | /_

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

Rrdtool sources are available here:
http://oss.oetiker.ch/rrdtool/pub
Expand Down
2 changes: 1 addition & 1 deletion make/screen/files/README
Expand Up @@ -5,7 +5,7 @@ Screen Freetz package

Copyright (C) 2006 Daniel Eiband <eiband@online.de>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

Screen sources are available here:
http://ftp.gnu.org/gnu/screen/
Expand Down
2 changes: 1 addition & 1 deletion make/siproxd/files/README
Expand Up @@ -3,7 +3,7 @@ siproxd Freetz package
|__ |_) |__ |__ | /
| |\ |__ |__ | /_

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

siproxd sources are available here:
http://siproxd.sourceforge.net/
Expand Down
2 changes: 1 addition & 1 deletion make/sispmctl/files/README
Expand Up @@ -3,7 +3,7 @@ sispmctl Freetz package
|__ |_) |__ |__ | /
| |\ |__ |__ | /_

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

sispmctl sources are available here:
http://sourceforge.net/projects/sispmctl/files/sispmctl/
2 changes: 1 addition & 1 deletion make/spindown-cgi/files/README
Expand Up @@ -5,4 +5,4 @@ spindown CGI Freetz package

Copyright (C) 2007 Michael Heimpold <m.heimpold@web.de>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/
2 changes: 1 addition & 1 deletion make/tor/files/README
Expand Up @@ -5,7 +5,7 @@ Tor Freetz package

Copyright (C) 2006-2008 Mikolas Bingemer <bingemer@gmx.net>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

Tor sources are available here:
https://www.torproject.org/download-unix.html
2 changes: 1 addition & 1 deletion make/virtualip-cgi/files/README
Expand Up @@ -5,7 +5,7 @@ VirtualIP Freetz package

Copyright (C) 2006 Daniel Eiband <eiband@online.de>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

Have a lot more fun,
Daniel
2 changes: 1 addition & 1 deletion make/vsftpd/files/README
Expand Up @@ -3,7 +3,7 @@ Vsftpd Freetz package
|__ |_) |__ |__ | /
| |\ |__ |__ | /_

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

Vsftpd sources are available here:
ftp://vsftpd.beasts.org/users/cevans
2 changes: 1 addition & 1 deletion make/xmail/files/README
Expand Up @@ -5,7 +5,7 @@ xmail Freetz package

Copyright (C) 2009 Stephan M�ller <sm@chronox.de>

This is a package for Freetz: http://www.freetz.org/
This is a package for Freetz: https://freetz.github.io/

xmail sources are available here:
http://www.xmailserver.org
Expand Down

0 comments on commit 10d7616

Please sign in to comment.