search for: 2518c5c

Displaying 2 results from an estimated 2 matches for "2518c5c".

Did you mean: 25185
2011 Aug 11
0
[PATCH] all .py are under /usr
avoids traversing /proc --- recipe/image-minimizer.ks.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/image-minimizer.ks.in b/recipe/image-minimizer.ks.in index 2518c5c..956bc20 100644 --- a/recipe/image-minimizer.ks.in +++ b/recipe/image-minimizer.ks.in @@ -5,7 +5,7 @@ %post echo "Removing python source files" -find / -name '*.py' -exec rm -f {} \; -find / -name '*.pyo' -exec rm -f {} \; +find /usr -name '*.py' -exec rm -f {}...
2011 Jul 23
0
[PATCH] make image minimization optional
...\ *-minimizer.ks \ common-nochroot.ks \ common-manifest.ks \ + image-minimizer.ks.in \ $(PACKAGE).ks.in \ $(PACKAGE).ks diff --git a/recipe/image-minimizer.ks.in b/recipe/image-minimizer.ks.in new file mode 100644 index 0000000..2518c5c --- /dev/null +++ b/recipe/image-minimizer.ks.in @@ -0,0 +1,11 @@ +%post --nochroot --interpreter image-minimizer +%include common-minimizer.ks +%include @DISTRO at -minimizer.ks +%end + +%post +echo "Removing python source files" +find / -name '*.py' -exec rm -f {} \; +find / -na...