summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/tools/cgclear.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/cgclear.c b/src/tools/cgclear.c
index 1485768..c286272 100644
--- a/src/tools/cgclear.c
+++ b/src/tools/cgclear.c
@@ -27,6 +27,9 @@ int main(int argc, char *argv[])
int error;
error = cgroup_unload_cgroups();
+ /* Don't spit an error when there is nothing to clear. */
+ if (error == ECGROUPNOTMOUNTED)
+ error = 0;
if (error) {
printf("%s failed with %s\n", argv[0], cgroup_strerror(error));