Searched defs:mntdir (Results 1 - 1 of 1) sorted by relevance

/systemd/src/shared/
H A Dmachine-pool.c194 char tmpdir[] = "/tmp/machine-pool.XXXXXX", *mntdir = NULL; local
294 mntdir = strjoina(tmpdir, "/mnt");
295 if (mkdir(mntdir, 0700) < 0) {
301 if (mount(loopdev, mntdir, "btrfs", 0, NULL) < 0) {
307 r = btrfs_quota_enable(mntdir, true);
311 r = btrfs_subvol_auto_qgroup(mntdir, 0, true);
315 if (chmod(mntdir, 0700) < 0) {
322 if (mount(mntdir, "/var/lib/machines", NULL, MS_BIND, NULL) < 0) {
331 (void) umount2(mntdir, MNT_DETACH);
332 (void) rmdir(mntdir);
[all...]

Completed in 11 milliseconds