dockerd: exit with error 1 when failing

This commit is contained in:
Frederico F. de Oliveira 2021-01-21 02:09:05 +00:00 committed by Yaksh Bariya
parent 6741d3860b
commit 9ace488ccb
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,7 @@ cgroups='blkio cpu cpuacct cpuset devices freezer memory pids schedtune'
# try to mount cgroup root dir and exit in case of failure
if ! mountpoint -q /sys/fs/cgroup 2>/dev/null; then
mkdir -p /sys/fs/cgroup
mount -t tmpfs -o "${opts}" cgroup_root /sys/fs/cgroup || exit
mount -t tmpfs -o "${opts}" cgroup_root /sys/fs/cgroup || exit 1
fi
# try to mount cgroup2
@ -27,4 +27,3 @@ done
# start the docker daemon
dockerd-dev $@