19 lines
190 B
Plaintext
Executable File
19 lines
190 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
depend() {
|
|
need localmount swap
|
|
after bootmisc modules
|
|
}
|
|
|
|
start() {
|
|
/etc/init.d/zram start
|
|
}
|
|
|
|
status() {
|
|
/etc/init.d/zram status
|
|
}
|
|
|
|
stop() {
|
|
/etc/init.d/zram stop
|
|
}
|