16 lines
394 B
Bash
Executable File
16 lines
394 B
Bash
Executable File
#!/bin/sh -x
|
|
echo "got here in mattermost -- jcarr put this here"
|
|
touch /tmp/mattermost.jcarr.install
|
|
echo
|
|
echo follow the instructions to complete an install from here:
|
|
echo
|
|
echo https://docs.mattermost.com/install/install-tar.html
|
|
echo
|
|
|
|
useradd --system --user-group mattermost
|
|
echo $?
|
|
|
|
systemctl daemon-reload
|
|
echo systemctl status mattermost.service
|
|
echo systemctl start mattermost.service
|