mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 10:57:02 +08:00
Dict Xiong
2cc2ab48b8
* riot: add . for .ibd and non for proxied * riot: 'user@..' to overwrite username, '...:22' to overwrite port, treat the arg as server name if it doesn't match any preset, sshl can accept only a port number and default to use localhost * update.sh: ddns sleep for random seconds to avoid burst * riot: support zssh and sftp, and set ssh options according to trust settings * riot: add scp * riot: support jump servers, sep by commas * common.sh: argparser supports -d/--dev and -D/--dry-run * install.sh: remove -s/--secure because of no use * riot: if remote ends with dot, treat it as a full-hostname; add tests * sagent.sh: refuse to work on windows --------- Co-authored-by: xiongdian.me <xiongdian.me@bytedance.com>
66 lines
1.7 KiB
Bash
66 lines
1.7 KiB
Bash
#!/bin/false "This script should be sourced in zsh, not executed directly"
|
|
|
|
set -ex
|
|
trap "dfs beacon gh.ci.fail" ERR
|
|
|
|
# check files
|
|
cd /
|
|
l
|
|
cd ~
|
|
l
|
|
dfs cd
|
|
l
|
|
pwd
|
|
test -f .zshrc2
|
|
diff -q ./.ssh/authorized_keys2 ~/.ssh/authorized_keys2
|
|
grep -q ".zshrc2" ~/.zshrc
|
|
|
|
# check scripts and functions
|
|
dfs version
|
|
dfs log 1
|
|
dfs beacon gh.ci $GITHUB_SHA
|
|
z ~
|
|
test ~ -ef "$(pwd)"
|
|
dogo
|
|
doll
|
|
dfs cd
|
|
tools/test-getopts.sh
|
|
tools/common.sh get_os_name
|
|
test $(echo y | tools/common.sh ask_for_yN "test") = "1"
|
|
test $(echo n | tools/common.sh ask_for_yN "test") = "0"
|
|
test $(echo | tools/common.sh ask_for_yN "test") = "0"
|
|
test $(echo | tools/common.sh ask_for_Yn "test") = "1"
|
|
test $(DFS_QUIET=1 tools/common.sh ask_for_Yn "test") = "1"
|
|
test "$(DFS_TRUST=1 riot time@is.impt:2222,yes@you-r.right,you@are.really.recht.,ibd.,try@it scp /tmp/ ./tmp -D 2>/dev/null)" = 'scp -P 12022 -o ControlMaster=auto -o ControlPath=/tmp/sshcm-%C -o PermitLocalCommand=yes -o ProxyJump=time@is.impt:2222,yes@you-r.right,you@are.really.recht.,ibd. -r try@it.ibd.ink:"/tmp/" "./tmp"'
|
|
|
|
# check alias
|
|
alias p114
|
|
alias cbds
|
|
which riot
|
|
sagt
|
|
test -f "/tmp/piv-agent-$(whoami)"
|
|
gbes || which gbes
|
|
|
|
# check update
|
|
DFS_VERSION=`dfs version`
|
|
dfs update
|
|
dfs version
|
|
test `git rev-parse HEAD` = `curl -fsSL https://api.beardic.cn/get-var/dfs-commit-id`
|
|
|
|
# clean
|
|
git reset --hard $DFS_VERSION
|
|
|
|
# then check install.sh
|
|
./install.sh -dx DFS_CI=1 -H e153a2eL,f8At3iFw
|
|
grep -qE "testhist 1$" ~/.zsh_history
|
|
grep -qE "testhist 4$" ~/.zsh_history
|
|
grep -qx "DFS_CI=1" ~/.config/dotfiles/env
|
|
./install.sh -l
|
|
dfs version
|
|
test `git rev-parse HEAD` = `curl -fsSL https://api.beardic.cn/get-var/dfs-commit-id`
|
|
|
|
# clean
|
|
git reset --hard $DFS_VERSION
|
|
|
|
set +x
|