blob: e7879f1871dbd26c2a37de034607e1ed8bed3dab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# download cobbler managed config files
#for $tkey, $tpath in $template_files.items()
#set $orig = $tpath
#set $tpath = $tpath.replace("_","__").replace("/","_")
#if $getVar("$system","") != ""
#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
wget "$turl" --output-document="$orig"
#end for
|