diff --git a/src/services/execution/execute/execution.c b/src/services/execution/execute/execution.c index 0a99965e9da04a227b1a92dfc90f1ac48e681621..e6a2f7ba47b10523fe48a815baec149bc60db616 100644 --- a/src/services/execution/execute/execution.c +++ b/src/services/execution/execute/execution.c @@ -256,8 +256,7 @@ static int umount_dev_tmpfs_for_system_container(const container_t *cont) return -1; } if (umount(rootfs_dev_path) < 0 && errno != ENOENT) { - ERROR("Failed to umount dev tmpfs: %s, error: %s", rootfs_dev_path, strerror(errno)); - return -1; + WARN("Failed to umount dev tmpfs: %s, error: %s", rootfs_dev_path, strerror(errno)); } } return 0;