myos/ansible/roles/hosts/files/etc/init.d/zram-openrc

19 lines
190 B
Plaintext
Raw Normal View History

2021-02-09 17:05:00 +01:00
#!/sbin/openrc-run
depend() {
need localmount swap
after bootmisc modules
}
start() {
/etc/init.d/zram start
}
status() {
/etc/init.d/zram status
}
2022-06-22 10:02:09 +02:00
stop() {
/etc/init.d/zram stop
}