aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/cobbler/snippets/download_config_files
blob: 04443113b47fa23b324c3d28f56677b9ae76c212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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
    #else
        #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)