forked from sig_core/toolkit
7 lines
145 B
Bash
7 lines
145 B
Bash
|
#!/bin/bash
|
||
|
r_log "systemd" "Checking if systemctl can check service status"
|
||
|
|
||
|
systemctl is-active sshd.service > /dev/null
|
||
|
|
||
|
r_checkExitStatus $?
|