blob: 2b13a059593aec42d5d3ef9dc462b05eafdb8d26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# This playbook clean the package cache of Alpine Linux hosts.
#
# Copyright (c) 2013-2014 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
- hosts: all
user: root
tasks:
- name: clean package cache
command: /sbin/apk cache clean
|