@whyour/qinglong 0.9.1 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whyour/qinglong",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Timed task management platform supporting Python3, JavaScript, Shell, Typescript",
5
5
  "repository": {
6
6
  "type": "git",
package/shell/start.sh CHANGED
@@ -43,6 +43,7 @@ if [[ $os_name == 'alpine' ]]; then
43
43
  jq \
44
44
  nginx \
45
45
  openssh \
46
+ openssh-client \
46
47
  procps \
47
48
  netcat-openbsd
48
49
  elif [[ $os_name == 'debian' ]] || [[ $os_name == 'ubuntu' ]]; then
@@ -90,7 +90,7 @@ let SshKeyService = class SshKeyService {
90
90
  }
91
91
  generateSingleSshConfig(alias, host, proxy) {
92
92
  if (host === 'github.com') {
93
- host = `ssh.github.com\n Port 443\n HostkeyAlgorithms +ssh-rsa\n PubkeyAcceptedAlgorithms +ssh-rsa`;
93
+ host = `ssh.github.com\n Port 443\n HostkeyAlgorithms +ssh-rsa`;
94
94
  }
95
95
  const proxyStr = proxy
96
96
  ? ` ProxyCommand nc -v -x ${proxy} %h %p 2>/dev/null\n`