diff options
author | Karel Kočí <karel.koci@nic.cz> | 2017-09-12 13:57:44 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2017-09-12 13:57:44 +0200 |
commit | 2620bd4c2fa5e73795e396a84bf6d74f803aa770 (patch) | |
tree | 961e99755a49ab014ccf1c3b0ca970a68d2f8f19 | |
parent | 3995613771cdb6a3f9ab4a65f8a9435dc79a6d91 (diff) | |
download | turris-myrepo-2620bd4c2fa5e73795e396a84bf6d74f803aa770.tar.gz turris-myrepo-2620bd4c2fa5e73795e396a84bf6d74f803aa770.tar.bz2 turris-myrepo-2620bd4c2fa5e73795e396a84bf6d74f803aa770.zip |
Drop morpher syntax
-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}) |