in cron weekly add a file with the following
#! /bin/bash
exec /etc/e-smith/events/actions/update-dns
then in /etc/e-smith/events/actions/update-dns
make sure you have
#!/usr/bin/perl -w
#----------------------------------------------------------------------
# copyright (C) 1999, 2000 e-smith, inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Technical support for this program is available from e-smith, inc.
# Please visit our web site www.e-smith.com for details.
#----------------------------------------------------------------------
package esmith;
use strict;
use Errno;
use esmith::config;
use esmith::util;
use esmith::db;
my %conf;
tie %conf, 'esmith::config';
#------------------------------------------------------------
# If using Dynamic DNS service, notify them of new IP address.
#------------------------------------------------------------
my $event = $ARGV [0];
my $ipaddress = $ARGV [1] || db_get(\%conf, 'ExternalIP');
my $status = db_get_prop(\%conf, 'DynDNS', 'status') || "disabled";
my $service = db_get_prop(\%conf, 'DynDNS', 'Service') || 'off';
my $account = db_get_prop(\%conf, 'DynDNS', 'Account');
my $password = db_get_prop(\%conf, 'DynDNS', 'Password');
my $domain = db_get(\%conf, 'DomainName');
untie %conf;
if ($status eq "enabled" && $service ne 'off')
{
exec ("/sbin/e-smith/dynamic-dns/$service",
$ipaddress, $account, $password, $domain)
or die "Couldn't exec /sbin/e-smith/dynamic-dns/$service: $!";
}
exit (0);
and then you'll need a database for that file to point too, but that's out of my scope, maybe someone else can help you with that, unless you already know what to do.
hope that helps
cheers