4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'manifests/init.pp', line 4
class sdr (
String $rtl_433_version = '23.11',
) {
$version_check = '/usr/local/bin/rtl_433 -V 2>&1 | grep version | cut -d\' \' -f3'
package { [
'rtl-sdr',
'cmake',
]: }
-> vcsrepo { '/opt/rtl_433':
ensure => present,
provider => git,
source => 'https://github.com/merbanan/rtl_433.git',
revision => $rtl_433_version,
notify => Exec['cmake .. && make install'],
}
-> file { '/opt/rtl_433/build':
ensure => directory,
}
-> exec { 'cmake .. && make install':
path => '/usr/bin',
cwd => '/opt/rtl_433/build',
unless => "test -f /usr/local/bin/rtl_433 && [[ \"$(${version_check})\" == '${rtl_433_version}' ]]",
require => Package['cmake'],
}
}
|