Skip to content
Snippets Groups Projects
import.pp 160 B
Newer Older
Adam Lewenberg's avatar
Adam Lewenberg committed

define base::rpm::import($url, $signature) {
    exec { $name:
        command => "/bin/rpm --import $url",
        unless => "/bin/rpm -qi $signature"
    }
}