소스 검색

Add reminder to reload systemctl daemon if needed

Jeremy Stretch 6 년 전
부모
커밋
e4cfeb1977
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      upgrade.sh

+ 4 - 1
upgrade.sh

@@ -70,8 +70,11 @@ if [ WARN_MISSING_VENV ]; then
   echo ""
   echo "netbox-rq.service ExecStart:"
   echo "  ${VIRTUALENV}/bin/python"
+  echo ""
+  echo "After modifying these files, reload the systemctl daemon:"
+  echo "  > systemctl daemon-reload"
   echo "--------------------------------------------------------------------"
 fi
 
 echo "Upgrade complete! Don't forget to restart the NetBox services:"
-echo "  sudo systemctl restart netbox netbox-rq"
+echo "  > sudo systemctl restart netbox netbox-rq"