diff --git a/shell/init_shell.sh b/shell/init_shell.sh index a16d3f0..71703f1 100644 --- a/shell/init_shell.sh +++ b/shell/init_shell.sh @@ -1,3 +1,5 @@ +sudo chown -R comma:comma /data/openpilot & + cd bash /data/openpilot/shell/ bash ./configure_ssh.sh diff --git a/shell/node_modules/.package-lock.json b/shell/node_modules/.package-lock.json index 235082c..08f5b97 100644 --- a/shell/node_modules/.package-lock.json +++ b/shell/node_modules/.package-lock.json @@ -3,6 +3,11 @@ "lockfileVersion": 3, "requires": true, "packages": { + "node_modules/http": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/http/-/http-0.0.1-security.tgz", + "integrity": "sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==" + }, "node_modules/ws": { "version": "8.16.0", "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", diff --git a/shell/node_modules/http/README.md b/shell/node_modules/http/README.md new file mode 100644 index 0000000..5e9a74c --- /dev/null +++ b/shell/node_modules/http/README.md @@ -0,0 +1,9 @@ +# Security holding package + +This package name is not currently in use, but was formerly occupied +by another package. To avoid malicious use, npm is hanging on to the +package name, but loosely, and we'll probably give it to you if you +want it. + +You may adopt this package by contacting support@npmjs.com and +requesting the name. diff --git a/shell/node_modules/http/package.json b/shell/node_modules/http/package.json new file mode 100644 index 0000000..4196f28 --- /dev/null +++ b/shell/node_modules/http/package.json @@ -0,0 +1,6 @@ +{ + "name": "http", + "version": "0.0.1-security", + "description": "security holding package", + "repository": "npm/security-holder" +} diff --git a/shell/package-lock.json b/shell/package-lock.json index bd02e59..6f750c4 100644 --- a/shell/package-lock.json +++ b/shell/package-lock.json @@ -5,9 +5,15 @@ "packages": { "": { "dependencies": { + "http": "^0.0.1-security", "ws": "^8.16.0" } }, + "node_modules/http": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/http/-/http-0.0.1-security.tgz", + "integrity": "sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==" + }, "node_modules/ws": { "version": "8.16.0", "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", diff --git a/shell/package.json b/shell/package.json index a9d3cec..6c6421c 100644 --- a/shell/package.json +++ b/shell/package.json @@ -1,5 +1,6 @@ { "dependencies": { + "http": "^0.0.1-security", "ws": "^8.16.0" } }