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.
 
 
 
 

8 righe
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