選択できるのは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