This commit is contained in:
Dict Xiong 2022-08-27 01:26:44 +08:00
parent 7e44bd779a
commit 451e0031bd
2 changed files with 10 additions and 6 deletions

View File

@ -11,7 +11,7 @@ jobs:
run: | run: |
sudo apt update sudo apt update
sudo apt install -y git python3 python3-pip zsh curl inetutils-ping sudo apt install -y git python3 python3-pip zsh curl inetutils-ping
sudo apt remove -y vim sudo apt remove -y vim tmux
sudo pip3 install requests sudo pip3 install requests
- name: checkout repo - name: checkout repo
@ -22,6 +22,9 @@ jobs:
pwd pwd
./install.sh ./install.sh
- name: checkout repo
uses: actions/checkout@v3
- name: antigen build - name: antigen build
shell: /bin/zsh -ileo PIPE_FAIL {0} shell: /bin/zsh -ileo PIPE_FAIL {0}
run: | run: |
@ -43,16 +46,16 @@ jobs:
dfs cd dfs cd
pwd pwd
dfs version dfs version
dfs log 1
l l
dogo dogo
tools/common.sh get_os_type tools/common.sh get_os_type
tools/common.sh get_linux_dist tools/common.sh get_linux_dist
bash -x tools/common.sh post_log 1 2 3
- name: check scripts and alias (no ret check) - name: check scripts and alias (no ret check)
shell: /bin/zsh -il {0} shell: /bin/zsh -il {0}
run: | run: |
dfs log 1
bash -x tools/common.sh post_log 1 2 3
p114 -c 4 p114 -c 4
return 0 return 0

View File

@ -63,10 +63,11 @@ if __name__ == "__main__":
logging.info("200 ok") logging.info("200 ok")
exit(0) exit(0)
elif resp.status_code == 403: elif resp.status_code == 403:
logging.error("403 forbidden") logging.warn("403 forbidden")
logging.info("you may need to register your hostname and uuid") logging.info("you may need to register your hostname and uuid")
logging.info(f"hostname: {hostname}, uuid: {uuid}")
exit(0)
else: else:
logging.error("unknown error ") logging.error("unknown error ")
logging.error(f"{resp.status_code}: {resp.text}") logging.error(f"{resp.status_code}: {resp.text}")
logging.info(f"hostname: {hostname}, uuid: {uuid}") exit(1)
exit(1)