diff -ur old/kickstarts/legacy.ks build/kickstarts/legacy.ks
--- old/kickstarts/legacy.ks	2008-11-17 09:18:30.000000000 +0100
+++ build/kickstarts/legacy.ks	2008-11-19 16:54:52.000000000 +0100
@@ -18,7 +18,7 @@
 # Use network installation
 url --url=$tree
 # Network information
-SNIPPET::network_config
+$SNIPPET('network_config')
 # Reboot after installation
 reboot
 
@@ -39,14 +39,14 @@
 
 %pre
 $kickstart_start
-SNIPPET::pre_install_network_config
+$SNIPPET('pre_install_network_config')
 
 %packages
 
 %post
 $yum_config_stanza
-SNIPPET::post_install_kernel_options
-SNIPPET::post_install_network_config
-SNIPPET::download_config_files
+$SNIPPET('post_install_kernel_options')
+$SNIPPET('post_install_network_config')
+$SNIPPET('download_config_files')
 $kickstart_done
 
diff -ur old/kickstarts/sample_end.ks build/kickstarts/sample_end.ks
--- old/kickstarts/sample_end.ks	2008-11-17 09:18:30.000000000 +0100
+++ build/kickstarts/sample_end.ks	2008-11-19 16:54:57.000000000 +0100
@@ -24,7 +24,7 @@
 # If any cobbler repo definitions were referenced in the kickstart profile, include them here.
 $yum_repo_stanza
 # Network information
-SNIPPET::network_config
+$SNIPPET('network_config')
 # Reboot after installation
 reboot
 
@@ -44,19 +44,19 @@
 autopart
 
 %pre
-SNIPPET::pre_install_network_config
+$SNIPPET('pre_install_network_config')
 $kickstart_start
 %end
 
 %packages
-SNIPPET::func_install_if_enabled
+$SNIPPET('func_install_if_enabled')
 %end
 
 %post
 $yum_config_stanza
-SNIPPET::post_install_kernel_options
-SNIPPET::post_install_network_config
-SNIPPET::func_register_if_enabled
-SNIPPET::download_config_files
+$SNIPPET('post_install_kernel_options')
+$SNIPPET('post_install_network_config')
+$SNIPPET('func_register_if_enabled')
+$SNIPPET('download_config_files')
 $kickstart_done
 %end
