12 lines
108 B
Plaintext
Executable File
12 lines
108 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Redis container"
|
|
|
|
start() {
|
|
lxc-start redis
|
|
}
|
|
|
|
stop() {
|
|
lxc-stop redis
|
|
}
|