Run the following to disable IPV6, reverts at reboot
echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
Add the following lines to /etc/sysctl.conf to make change permanent
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
# ANSI Escape codes, colors in shell
RED='\033[0;31m'
NC='\033[0m' # No Color
BG_GREEN='\033[42;30m'
GREEN='\033[0;32m'
BG_RED='\033[41;30m'
| YOCTO Patterns: | |
| ['*LICEN[CS]E*', 'COPYING*', '*[Ll]icense*', 'LEGAL*', '[Ll]egal*', '*GPL*', 'README.lic*', 'COPYRIGHT*', '[Cc]opyright*', 'e[dp]l-v10'] | |
| FIND ALL LIC FILES | |
| find ./ -iname "*licen[cs]e*" -o -iname "copying*" -o -iname "legal*" -o -iname "*GPL*" -o -iname "readme.lic*" -o -iname "copyright*" -o -iname "e[dp]l-v10" | |
| HASH ALL Files | |
| openssl md5 $(find ./ -iname "*licen[cs]e*" -o -iname "copying*" -o -iname "legal*" -o -iname "*GPL*" -o -iname "readme.lic*" -o -iname "copyright*" -o -iname "e[dp]l-v10") | |
| Generate lockdown file with openssl and vim. | |
| Clean download files, and fetch recipe again. | |
| Open downloads/npm/packageName. | |
| Run openssl sha1 * > lockdown_0.0.0.json | |
| Search replace lockdown.json from openssl sha1 * in vim | |
| :%s/SHA1(/ "/g | |
| :%s/-\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.tgz)= \)/": {\r "\1": "/g | |
| :%s/\(\w\)\n/\1"\r },\r/g |
| https://stackoverflow.com/questions/45582698/is-it-possible-to-pass-arguments-to-a-task-in-visual-studio-code | |
| { | |
| "label": "runwithargs", | |
| "type": "shell", | |
| "windows": { | |
| "options": { | |
| "shell": { | |
| "executable": "powershell.exe", | |
| "args": [ |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.