Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- #!/bin/bash
-
- # Check if systemctl exists, does not exist in docker containers
- SCTL=$(which systemctl >/dev/null; echo $?)
- if [ "$SCTL" -eq "0" ]; then
- # Reload systemd because of new service file
- systemctl daemon-reload
- fi
|