Skip to content

Commit

Permalink
[+] updates for version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ownport committed Oct 20, 2019
1 parent 5bc7ece commit 1dc0adb
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.3.1

- added docker images for testing
- Upgraded components to versions:
- Ansible, 2.8.5
- Installed new dependencies for access via username/password with paramiko
- pyasn1, 0.4.7
- asn1crypto, 1.2.0
- bcrypt, 3.1.7
- cffi, 1.13.0
- PyNaCl, 1.3.0

## 0.3.0

Upgrade to versions:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

VERSION ?= 'v0.3.0'
VERSION ?= 'v0.3.1'
TARBALL_NAME ?= portable-ansible-$(VERSION)


Expand Down
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Ansible package with required python modules. No need to install, just download,

## Included in the distribution

Version: 0.3.0
Version: 0.3.1

| Package | Version |
| -------- | ------- |
| ansible | 2.8.0 |
| ansible | 2.8.5 |
| jinja2 | 2.10.1 |
| PyYAML | 3.12 |
| paramiko | 2.4.2 |
Expand Down Expand Up @@ -56,6 +56,22 @@ Instead of installing the python packages to `ansible/extras`, you can also inst
pip install --user -r requirements.txt
```

## Hints

make aliases to portable ansible directory. In the examples below `portable-ansible` installed in `/opt` directory
```
ln -s /opt/ansible /opt/ansible-playbook
```

## Testing

```sh
python3 /opt/ansible-playbook -i 172.17.0.2, ~/playbooks/remote-via-ssh-key.yaml
```

```sh
python3 /opt/ansible-playbook -i 172.17.0.2, -c paramiko ~/playbooks/remote-via-username-and-password.yaml --ask-pass
```

## For developers

Expand Down

0 comments on commit 1dc0adb

Please sign in to comment.