blob: 09771139f757f05cce16d79dda038be328b14424 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/bash
sudo ln -s config/weather-logger-receiver.yaml /etc/
sudo ln -s config/systemd/weather-logger-receiver.service /etc/systemd/system/
sudo ln -s config/syslog/50weather-logger-receiver.conf /etc/rsyslog.d/
sudo ln -s config/logrotate/weather-logger-receiver /etc/logrorate.d/
useradd -M -s /bin/bash -G dialout weather-logger
sudo mkdir -p /run/weather_logger/ /var/log/weather_logger/
sudo chown weather-logger:weather-logger /run/weather_logger/ /var/log/weather_logger/
|