Small update version 2.1.1

Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-08-29 21:02:43 +02:00
parent e32b580166
commit ecd4c05b84
5 changed files with 40 additions and 49 deletions

View File

@ -36,27 +36,17 @@
}
],
"provisioners": [
{
"inline": ["mkdir -p /usr/local/src/pwnagotchi"],
"type": "shell"
},
{
"type": "file",
"sources": [
"../../../dist/pwnagotchi-{{user `pwn_version`}}.tar.gz"
],
"destination": "/usr/local/src/pwnagotchi/"
},
{
"type": "shell",
"inline": [
"apt-get -y --allow-releaseinfo-change update",
"apt-get install -y --no-install-recommends ansible"
"apt-get -y dist-upgrade",
"apt-get install -y ansible"
]
},
{
"type": "ansible-local",
"playbook_file": "../../../builder/pwnagotchi.yml",
"playbook_file": "../../builder/pwnagotchi.yml",
"extra_arguments": [
"--extra-vars \"ansible_python_interpreter=/usr/bin/python3\""
],