diff --git a/SOURCES/mattermost.logrotate b/SOURCES/mattermost.logrotate new file mode 100644 index 0000000..73e7f3b --- /dev/null +++ b/SOURCES/mattermost.logrotate @@ -0,0 +1,10 @@ +# mattermos logs: +/var/log/mattermost/*.log { + daily + missingok + rotate 14 + compress + delaycompress + notifempty + copytruncate +} diff --git a/SOURCES/mattermost.service b/SOURCES/mattermost.service new file mode 100644 index 0000000..f66414e --- /dev/null +++ b/SOURCES/mattermost.service @@ -0,0 +1,13 @@ +[Unit] +Description=Mattermost +After=syslog.target network.target postgresql.service mysql.service mariadb.service + +[Service] +Type=simple +WorkingDirectory=/var/lib/mattermost +User=mattermost +ExecStart=/usr/bin/mattermost -c /etc/mattermost/config.js +PIDFile=/var/run/mattermost/master.pid + +[Install] +WantedBy=multi-user.target