16 lines
136 B
Plaintext
Executable File
16 lines
136 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Redis container"
|
|
|
|
depend() {
|
|
need cgroups
|
|
}
|
|
|
|
start() {
|
|
lxc-start redis
|
|
}
|
|
|
|
stop() {
|
|
lxc-stop redis
|
|
}
|