Compare commits
2 Commits
3c10c16368
...
8c9236ec3d
Author | SHA1 | Date |
---|---|---|
|
8c9236ec3d | |
|
cd86795c10 |
|
@ -5,6 +5,7 @@ Architecture: amd64
|
||||||
Maintainer: Jeff Carr <jcarr@wit.com>
|
Maintainer: Jeff Carr <jcarr@wit.com>
|
||||||
Installed-Size: 5883
|
Installed-Size: 5883
|
||||||
Section: network
|
Section: network
|
||||||
|
Requires: postgresql
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Homepage: https://github.com/mattermost/mattermost-server
|
Homepage: https://github.com/mattermost/mattermost-server
|
||||||
Description: mattermost
|
Description: mattermost
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Mattermost
|
||||||
|
After=network.target
|
||||||
|
After=postgresql.service
|
||||||
|
BindsTo=postgresql.service
|
||||||
|
[Service]
|
||||||
|
Type=notify
|
||||||
|
ExecStart=/opt/mattermost/bin/mattermost
|
||||||
|
TimeoutStartSec=3600
|
||||||
|
KillMode=mixed
|
||||||
|
Restart=always
|
||||||
|
RestartSec=10
|
||||||
|
WorkingDirectory=/opt/mattermost
|
||||||
|
User=mattermost
|
||||||
|
Group=mattermost
|
||||||
|
LimitNOFILE=49152
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
|
@ -1,5 +1,6 @@
|
||||||
.debian/*.deb
|
.debian/mattermost*.deb
|
||||||
.debian/*.tar.xz
|
.debian/control.tar.xz
|
||||||
|
.debian/data.tar.xz
|
||||||
.debian/DEBIAN/md5sums
|
.debian/DEBIAN/md5sums
|
||||||
.debian/files/opt/
|
.debian/files/opt/
|
||||||
mattermost*
|
mattermost*tar.gz
|
||||||
|
|
Loading…
Reference in New Issue