diff options
Diffstat (limited to 'config/install')
-rwxr-xr-x | config/install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/install b/config/install new file mode 100755 index 0000000..0977113 --- /dev/null +++ b/config/install @@ -0,0 +1,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/ |