mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 18:57:01 +08:00
Dict Xiong
483f7fd7f3
* auth: add .eid/authorized_certificates for pam pkcs11 auth * .zshrc: alias sl for sudo zsh -l * to-install: nix * zshrc: use gnu ls on mac * zshrc: try to use gnu-ls * try to fix ci for macos * riot: add domain box[0-9] * riot: shortcuts i,x,j * .zshrc: warn if not in main channel * sagt: reset agent so paths * sagt: import ssh-agent -P paths * common.sh: is_port_free and get_free_port * riot use get_free_port to fix issue on windows * riot: ssh support instant command * riot: proxy delimiter from comma (,) to slash (/) * riot: support multiple remotes, delimiter=comma (,) * riot: fix ci; install.sh: --no-ssh * riot: improve ci --------- Co-authored-by: xiongdian.me <xiongdian.me@bytedance.com>
74 lines
2.1 KiB
Bash
74 lines
2.1 KiB
Bash
#!/bin/false "This script should be sourced in zsh, not executed directly"
|
|
|
|
set -ex
|
|
trap "dfs beacon gh.ci.fail" ERR
|
|
|
|
# fix for macos
|
|
dfs cd
|
|
if [[ $(./tools/common.sh get_os_type) == "macos" ]]; then
|
|
export PATH="/usr/local/opt/coreutils/libexec/gnubin:/opt/homebrew/opt/coreutils/libexec/gnubin:${PATH}"
|
|
fi
|
|
|
|
# check files
|
|
cd /
|
|
l
|
|
cd ~
|
|
l
|
|
dfs cd
|
|
l
|
|
pwd
|
|
test -f .zshrc2
|
|
diff -q ./.ssh/authorized_keys2 ~/.ssh/authorized_keys2
|
|
diff -q ./.eid/authorized_certificates ~/.eid/authorized_certificates
|
|
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,another@host 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"
|
|
scp -P 12022 -o ControlMaster=auto -o ControlPath=/tmp/sshcm-%C -o PermitLocalCommand=yes -o ForwardX11=yes -o ForwardAgent=yes -r another@host.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
|