summaryrefslogtreecommitdiffstats
path: root/snippets/download_config_files
diff options
context:
space:
mode:
Diffstat (limited to 'snippets/download_config_files')
-rw-r--r--snippets/download_config_files10
1 files changed, 1 insertions, 9 deletions
diff --git a/snippets/download_config_files b/snippets/download_config_files
index f93a2a39..04443113 100644
--- a/snippets/download_config_files
+++ b/snippets/download_config_files
@@ -1,11 +1,7 @@
-
# Start download cobbler managed config files (if applicable)
-
#for $tkey, $tpath in $template_files.items()
-
#set $orig = $tpath
#set $tpath = $tpath.replace("_","__").replace("/","_")
-
#if $getVar("system_name","") != ""
#set $ttype = "system"
#set $tname = $system_name
@@ -13,14 +9,10 @@
#set $ttype = "profile"
#set $tname = $profile_name
#end if
-
#set $turl = "http://"+$http_server+"/cblr/svc/op/template/"+$ttype+"/"+$tname+"/path/"+$tpath
-
#if $orig.startswith("/")
+mkdir -p `dirname $orig`
wget "$turl" --output-document="$orig"
#end if
-
-
#end for
-
# End download cobbler managed config files (if applicable)