Add a systemd service to manage node flush/unflush, useful during system startup and shutdown to avoid requiring administrator intervention for this to occur. This is optional and the service is not enabled by default, and the postinst script informs the administrator of this. Also adds a systemd target to collect the two service units together and provide an easy way to flush+shutdown or startup+unflush the entire PVC system. Closes #28
7 lines
131 B
Bash
7 lines
131 B
Bash
#!/bin/sh
|
|
|
|
# Disable the services
|
|
systemctl disable pvc-flush.service
|
|
systemctl disable pvcd.service
|
|
systemctl disable pvcd.target
|