mirror of
https://github.com/DictXiong/dotfiles.git
synced 2025-07-01 12:50:30 +08:00
* feat(riot-config): default port 12022 * fix(ci) * feat(riot-config): remove tailing dot from .domain; remove j.remote and x.domain * feat(riot): *.batch * feat(riot): run command in tmux window(s) note that spaces in ssh commands are still not supported * feat(riot): -o RequestTTY=yes * fix(riot): SSH_OPTIONS * fix(riot): tmux use bash * feat(zshrc): use() * fix(riot): scp, and ci note that riot still has problems with spaces. we should use array to handle parameters. * fix(ci): update macos image * feat: update email * feat: revert git email * feat(ssh): update keys * feat(sagent): sagt op * fix(sagent): error note * fix(ci): test of auto-dep * feat(ssh): remove keys ltp1-bd and ltp1 * feat(riot): rm - remove host keys * build(ci): update to ubuntu-latest and Yikun/hub-mirror-action@v1.5 * feat: remove frigg-client.log * feat(riot): -t or --trust to set RIOT_TRUST_SERVER * feat(zshrc/alias): add sc and t, remove cps and mvs feat(zshrc/plugins): add man and web-search, remove ufw * feat(riot): refactor argparse feat(riot): add `--password` and `--` feat(common.sh): argparse supports `--` feat(riot): refactor ping to ping remote * feat(riot): sshd can specify the local port * feat(riot): print help when no argument or no remote * fix(riot): ci * feat(riot): better print_cmd with escape * feat(riot-config): support sed* * fix(frigg): hostname converted into lower case
77 lines
2.5 KiB
Bash
77 lines
2.5 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
|
|
if [[ -x $(command -v crontab) ]]; then
|
|
crontab -l | grep -qxF "0 * * * * ${DOTFILES}/update.sh"
|
|
fi
|
|
|
|
# check scripts and functions
|
|
dfs version
|
|
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 RequestTTY=yes -o PermitLocalCommand=yes -o ControlMaster=auto -o ControlPath=~/.ssh/master-socket/%C -o ProxyJump=time@is.impt:2222,yes@you-r.right:12022,you@are.really.recht:12022,root@ibd:12022 -r try@it.dxng.net:/tmp/ ./tmp
|
|
scp -P 12022 -o RequestTTY=yes -o PermitLocalCommand=yes -o ControlMaster=auto -o ControlPath=~/.ssh/master-socket/%C -o ForwardX11=yes -o ForwardAgent=yes -r another@host.dxng.net:/tmp/ ./tmp'
|
|
test "$(riot you@example.com:55 -tD ssh --password -- ping -c 1 2>/dev/null)" = 'ssh -p 55 -o RequestTTY=yes -o ForwardX11=yes -o ForwardAgent=yes -o PasswordAuthentication=yes -o PubkeyAuthentication=no you@example.com ping -c 1'
|
|
|
|
# check alias
|
|
alias p114
|
|
alias cbds
|
|
which riot
|
|
sagt
|
|
test -f ~/.ssh/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
|