Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

8 строки
230 B

  1. #!/bin/bash
  2. # Check if systemctl exists, does not exist in docker containers
  3. SCTL=$(which systemctl >/dev/null; echo $?)
  4. if [ "$SCTL" -eq "0" ]; then
  5. # Reload systemd because of new service file
  6. systemctl daemon-reload
  7. fi