disable library during build

This commit is contained in:
Cassiano Aquino 2019-10-02 19:41:49 +01:00
parent 3ada1f875d
commit dcc5fd9027
No known key found for this signature in database
GPG Key ID: 2480258091054B09

View File

@ -14,6 +14,7 @@
{
"type": "shell",
"inline": [
"sed -i 's/^\\([^#]\\)/#\\1/g' /etc/ld.so.preload",
"apt-get -y update",
"apt-get install -y ansible"
]
@ -21,6 +22,12 @@
{
"type":"ansible-local",
"playbook_file": "pwnagotchi.yml"
},
{
"type": "shell",
"inline": [
"sed -i 's/^#\\(.+\\)/\\1/g' /etc/ld.so.preload"
]
}
]
}