mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
5 lines
237 B
Bash
5 lines
237 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
dpkg -L salt-common | perl -ne 's,/([^/]*)\.py$,/__pycache__/\1.*, or next; unlink $_ or die $! foreach glob($_)'
|
|
find /opt/saltstack/salt -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir
|