13 lines
224 B
Bash
Executable File
13 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd $(realpath $(dirname "${0}"))/install
|
|
|
|
# Configure ActiveMQ
|
|
mkdir -p /srv/activemq/data
|
|
chown -R 61616:61616 /srv/activemq/data
|
|
|
|
# Create service
|
|
cp etc/init.d/activemq /etc/init.d/activemq
|
|
rc-update -u
|