diff --git a/modules/rhizo_base/manifests/packages.pp b/modules/rhizo_base/manifests/packages.pp index f33635a..36ba421 100644 --- a/modules/rhizo_base/manifests/packages.pp +++ b/modules/rhizo_base/manifests/packages.pp @@ -19,6 +19,7 @@ class rhizo_base::packages::common { package { ['mosh', 'git', 'openvpn', 'lm-sensors', 'runit-systemd', 'sqlite3', 'libffi-dev', 'apcupsd', 'expect', 'gawk', 'swig', 'g++', 'tinc', 'tcpdump', 'libcdk5' , 'sngrep', 'rrdtool', 'dnsmasq', 'joe', 'curl', 'htop', 'screen', + 'websocketd', 'osmo-meas', 'python-unidecode', 'python-dateutil', 'python-yaml', 'python-formencode', 'python-smpplib', 'python-psycopg2', 'python-pysqlite2' ]: ensure => installed, diff --git a/modules/rhizo_base/manifests/runit.pp b/modules/rhizo_base/manifests/runit.pp index d4209e2..8c227a6 100644 --- a/modules/rhizo_base/manifests/runit.pp +++ b/modules/rhizo_base/manifests/runit.pp @@ -65,4 +65,10 @@ class rhizo_base::runit { require => [ File['/etc/sv'], Class['rhizo_base::kiwi'] ], } + file { '/etc/service/meas-web': + ensure => link, + target => '/etc/sv/meas-web', + require => [ File['/etc/sv'], Package['websocketd'] ], + } + }