Compare commits

...

2 Commits

Author SHA1 Message Date
Marcin Woźniak
5fb1aab879 Merge branch 'master' of git.yorune.pl:y0rune/myhome 2022-11-28 08:20:17 +01:00
Marcin Woźniak
8f36f760f4 Added the install_meraki_ansible 2022-11-24 13:57:23 +01:00

View File

@ -57,7 +57,6 @@ function install_gopls() {
function install_black() {
# Install black
pip install black --pre --user --force
pip3 install black --pre --user --force
}
@ -71,6 +70,11 @@ function install_ansible-language-server() {
sudo npm -g i yaml-language-server --force
}
function install_meraki_ansible() {
ansible-galaxy collection install cisco.meraki --force
pip3 install meraki --user --force
}
function main() {
command_start update_pip
command_start install_pyright
@ -82,6 +86,7 @@ function main() {
command_start install_gopls
command_start install_black
command_start install_ansible
command_start install_meraki_ansible
}
main