You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

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