i would like to change the httpd port!
and type the follow:
mkdir -p /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf 
cp /etc/e-smith/templates/etc/httpd/conf/httpd.conf/35Listen80 \ 
> /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/ 
and then edit the files in /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/35Listen80
my $port =
        db_get_prop(\%services, "httpd-e-smith", "HttpPort") || "80";
$OUT .= "Listen $ip:$port \n";
/sbin/e-smith/config setprop httpd-e-smith HttpPort 8080 
/sbin/e-smith/expand-template /etc/httpd/conf/httpd.conf
/etc/e-smith/events/actions/restart-httpd-full
what i did worng??