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 44 45 46 47 48 49 50 51 52
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<title>tinydyndns - upgrading from previous versions</title>
</head>
<body>
<a href="http://smarden.org/pape/">G. Pape</a><br>
<a href="index.html">tinydyndns</a>
<hr>
<h1>tinydyndns - upgrading from previous versions</h1>
<hr>
<h3>0.3.1 to 0.4.x</h3>
No further action from you is required.
<h3>0.3.0 to 0.3.1</h3>
The "rebuild" target in the automatically created
<tt>/etc/tinydyn/root/Makefile</tt> has been fixed, it needs to be
<pre>
rebuild: clean data.cdb
cut -d: -f1 <../pop/passwd |sed -e 's/$$/.dyn.example.com/' \
|xargs tinydyndns-data add
</pre>
where <tt>dyn.example.com</tt> is your tinydyndns domain.
Please adapt the <tt>Makefile</tt> if you provide a failover service.
<h3>0.2.1 to 0.3.0</h3>
The automatically created <tt>/etc/tinydyn/root/Makefile</tt> has changed
to support "<tt>make rebuild</tt>".
You should adapt your <tt>Makefile</tt> by adding the following lines to
it (make sure you use TABs for indent, as Makefiles require):
<pre>
# cd /etc/tinydyn/root
# cat >>Makefile <<EOT
rebuild: clean data.cdb
cut -d: -f1 <../pop/passwd |xargs tinydyndns-data add
clean:
rm -f data.cdb
EOT
#
</pre>
Also please remove the last line "exit 0" from the
<tt>/etc/tinydyn/pop/setpasswd</tt> script.
<p>
With this versions, tinydyndns documents how to provide a failover solution
for the tinydyndns services, see <a href="failover.html">here</a> for
details.
<hr>
<address><a href="mailto:pape@smarden.org">
Gerrit Pape <pape@smarden.org>
</a></address>
</body>
</html>
|