Puppet Class: sdr

Defined in:
manifests/init.pp

Summary

Configure SDR tools

Overview

Parameters:

  • rtl_433_version (String) (defaults to: '23.11')

    sets the tag of the rtl_433 repo to deploy



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
# File 'manifests/init.pp', line 4

class sdr (
  String $rtl_433_version = '23.11',
) {
  package { [
      'rtl-sdr',
      'cmake',
  ]: }

  vcsrepo { '/opt/rtl_433':
    ensure   => present,
    provider => git,
    source   => 'https://github.com/merbanan/rtl_433.git',
    revision => $rtl_433_version,
  }

  -> 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 && /usr/local/bin/rtl_433 -V 2>&1 | awk \'/rtl_433 version/ { print $3 }\'',
    require => Package['cmake'],
  }
}