DEV Community

Cover image for Using Ansible unarchive module with Alpine Linux
nop33.eth
nop33.eth

Posted on • Originally published at iliascreates.com on

3 3

Using Ansible unarchive module with Alpine Linux

If you are running Ansible on Alpine Linux and you use the unarchive builtin module you might have faced the following error message:

[Errno 2] No such file or directory: b'-T'
Enter fullscreen mode Exit fullscreen mode

The reason for this is that the unzip tool in Alpine does not have a -T option. To be able to use the unarchive Ansible module with Alpine Linux, you need to install unzip:

apk add unzip
Enter fullscreen mode Exit fullscreen mode

See the related GitHub issue.

Photo by Simon Fitall on Unsplash

Image of Datadog

Create and maintain end-to-end frontend tests

Learn best practices on creating frontend tests, testing on-premise apps, integrating tests into your CI/CD pipeline, and using Datadog’s testing tunnel.

Download The Guide

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay