blob: cb23b15ba8886066bb2f602dee2dcf52d9cf0cb7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
all:
ps axuw | grep ninit > /tmp/ninit.memory
pstree >> /tmp/ninit.memory
cd / && tar -czf ~/public_html/ninit/ninit-data.tar.gz \
--exclude etc/ninit/run --exclude etc/ninit/sys \
--exclude etc/ninit/bin --exclude etc/ninit/.sync \
--exclude etc/ninit/.nsvc_help etc/ninit /tmp/ninit.memory
@rm -f /tmp/ninit.memory
ls -R -F /etc/ninit/ | sed -e '/^total /d' -e '/^Makefile/d' > \
~/public_html/ninit/ls-R.txt
|