9 lines
182 B
Bash
9 lines
182 B
Bash
#!/bin/bash
|
|
|
|
if command -v systemctl >/dev/null 2>&1; then
|
|
if [ "$1" -eq 0 ]; then
|
|
systemctl stop vctp.service || :
|
|
systemctl disable vctp.service || :
|
|
fi
|
|
fi
|