16 lines
163 B
Plaintext
16 lines
163 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="ActiveMQ container"
|
|
|
|
depend() {
|
|
need cgroups
|
|
}
|
|
|
|
start() {
|
|
/usr/bin/lxc-start activemq
|
|
}
|
|
|
|
stop() {
|
|
/usr/bin/lxc-stop activemq
|
|
}
|