diff options
author | James Cammarata <jimi@sngx.net> | 2009-03-07 21:44:00 -0600 |
---|---|---|
committer | James Cammarata <jimi@sngx.net> | 2009-03-07 21:44:00 -0600 |
commit | d3fdc6d4965b02ce18346f067c14080115943a38 (patch) | |
tree | d2fa630d3f0e941acb7f5115c31ea91aabb4ae11 /snippets/download_config_files | |
parent | 54e462f3dca472d8bb8dc8a2b0a69c60ed9fe2ec (diff) | |
parent | 61db7baa541acc32b305ea6977a14ee8f5b3f470 (diff) | |
download | cobbler-d3fdc6d4965b02ce18346f067c14080115943a38.tar.gz cobbler-d3fdc6d4965b02ce18346f067c14080115943a38.tar.xz cobbler-d3fdc6d4965b02ce18346f067c14080115943a38.zip |
Merge branch 'devel' of git://git.fedorahosted.org/cobbler into ris-devel
Conflicts:
cobbler/utils.py
Diffstat (limited to 'snippets/download_config_files')
-rw-r--r-- | snippets/download_config_files | 10 |
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) |