Hi Andre,
Sometimes, suggestions and pinters given here are merely the starting point, and not the literal solutions. This can be both confusing and frustrating for new comers, and understandably so.
In this case, /etc/e-smith/templates-custom is the root folder of the user created template customisations.
To achieve what you need, have a look at the current structure of the template folder for the file you are trying to modify :-
/etc/e-smith/templates/etc/sysconfig....... and so on.
You will need to recreate the same directory structure, except under /etc/e-smith/templates-custom instead of /etc/e-smith/templates. Then modify the template fragment file under the templates-custom folder tree.
Therefore :-
mkdir -p /etc/e-smith/templates-custom/etc/sysconfig/network-scripts/ifcfg-eth1
cp /etc/e-smith/templates/etc/sysconfig/network-scripts/ifcfg-eth1/template-begin /etc/e-smith/templates-custom/etc/sysconfig/network-scripts/ifcfg-eth1
These 2 lines above (the second line is very long but is only one command line, not two - mind the line wrap), will create the necessary folder structure for you and then copy the template fragment you need to modify.
Now modify the file, eg :-
pico /etc/e-smith/templates-custom/etc/sysconfig/network-scripts/ifcfg-eth1/template-begin
(again, this is only 1 long line)
There are 2 sections in the template file, one deals with "normal" mode and the other if your eth1 and eth0 are running in "swapped" mode, which you would have selected when setting up SME or when configuring it through the admin console login. Edit the corresponding section for your setup.
Add :-
MACADDR=AA:BB:CC:DD:EE:FF
in between the NETMASK and NETWORK lines then save the file.
Now, expand the template with :-
/sbin/e-smith/expand-template /etc/sysconfig/network-scripts/ifcfg-eth1
Kelvin.