diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-18 17:21:15 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-18 17:21:15 -0700 |
commit | d42536f0c8a0e7eb84248c7f4f3264c317a9a04d (patch) | |
tree | cd80f618ac883fd5105d73b7831d87545e8c27b0 /Makefile | |
parent | b6f158b8a55f37d9d2854ff0e566298b85cc0c89 (diff) | |
download | vyos-cloud-init-d42536f0c8a0e7eb84248c7f4f3264c317a9a04d.tar.gz vyos-cloud-init-d42536f0c8a0e7eb84248c7f4f3264c317a9a04d.zip |
1. Add in a clean section that will remove the /var/lib/cloud dir and the cloud.log file (helpful for testing)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -15,5 +15,9 @@ test: 2to3: 2to3 $(PY_FILES) -.PHONY: test pylint pyflakes 2to3 +clean: + rm -rf /var/log/cloud-init.log \ + /var/lib/cloud/ + +.PHONY: test pylint pyflakes 2to3 clean |