4 lines
144 B
Bash
4 lines
144 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
(systemctl start rasdaemon && systemctl status rasdaemon && ras-mc-ctl --summary && echo "PASS" && exit 0) || (echo "FAIL"; exit 1;)
|