- using Ansible command line:
ansible-playbook --connection=local 127.0.0.1 playbook.yml- using inventory:
127.0.0.1 ansible_connection=local| # The Alpine package apk file is just a tar.gz file with additional files | |
| # https://wiki.alpinelinux.org/wiki/Apk_spec | |
| # untar into /tmp/ folder without the .PKGINFO and .SIGN.RSA file | |
| tar -xzf openjdk8-jre.apk -C /tmp/ --exclude=.PKGINFO --exclude=.SIGN* |
| #!/bin/bash | |
| set -e -u -o pipefail | |
| # Usage: Export a cookies.txt file from a browser logged-in in timeline.google.com with some | |
| # add-on/extension (i.e. Export cookies, Get cookies.txt). Now run the script for the | |
| # desired period: | |
| # | |
| # $ bash google-timeline-download.sh cookies.txt 2022-01-01 2022-02-20 out.kml | |
| # | |
| # Dependencies: curl, perl-xml-twig. |
ansible-playbook --connection=local 127.0.0.1 playbook.yml127.0.0.1 ansible_connection=local