diff options
| -rw-r--r-- | omnia.lua | 6 | ||||
| -rw-r--r-- | turris.lua | 6 | 
2 files changed, 6 insertions, 6 deletions
| @@ -1,7 +1,7 @@  -- This is myrepo omnia configuration  INFO("Using myrepo") -Repository "myrepo" "http://cynerd.cz/myrepo/omnia/" { +Repository("myrepo", "http://cynerd.cz/myrepo/omnia/", {  	priority = 50, pubkey = "file:///etc/updater/keys/myrepo.pub" -} +}) -Install "myrepo-cert" {critical=true} +Install("myrepo-cert", {critical=true}) @@ -1,7 +1,7 @@  -- This is myrepo omnia configuration  INFO("Using myrepo") -Repository "myrepo" "http://cynerd.cz/myrepo/turris/" { +Repository("myrepo", "http://cynerd.cz/myrepo/turris/", {  	priority = 50, pubkey = "file:///etc/updater/keys/myrepo.pub" -} +}) -Install "myrepo-cert" {critical=true} +Install("myrepo-cert", {critical=true}) | 
