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