12345678910111213141516171819202122232425262728 |
- #!/usr/bin/env lua
- local mpsconf={
- repo_dizin="/sources",
- sunucu={
- --[1]="https://mls.akdeniz.edu.tr/paketler23",
- [1]="http://10.55.1.82:9999",
- },
- talimatdepo={
- -- git repo adres, ilgili düzeye aktarılacak içerik
- -- tname düzeylere göre
- [1]={["https://notabug.org/milislinux/milis23"]="talimatname/1"},
- [2]={["https://notabug.org/milislinux/milis23"]="talimatname/2"},
- -- [3]={
- -- ["https://mls.akdeniz.edu.tr/git/aliabc/milis"]="2/xorg",
- -- ["https://mls.akdeniz.edu.tr/git/velidef/milis"]="2/xfce4",
- --},
-
- },
- betikdepo={
- -- ilgili repodan bin/ ayarlar/ gibi betik içeren dizinlerin alınması
- bin={["https://notabug.org/milislinux/milis23"]="bin"},
- ayarlar={["https://notabug.org/milislinux/milis23"]="ayarlar"},
- },
- }
- return mpsconf
|