mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
use tune2fs to disable ext4 mount counts and mount intervals
Signed-off-by: Marc Tamsky <mtamsky@gmail.com> (github: tamsky)
This commit is contained in:
parent
6bc773b2c1
commit
d229821501
1 changed files with 4 additions and 0 deletions
|
@ -306,6 +306,10 @@ func (devices *DeviceSet) createFilesystem(info *DevInfo) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = exec.Command("mkfs.ext4", append([]string{"-E", "nodiscard,lazy_itable_init=0"}, args...)...).Run()
|
err = exec.Command("mkfs.ext4", append([]string{"-E", "nodiscard,lazy_itable_init=0"}, args...)...).Run()
|
||||||
}
|
}
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = exec.Command("tune2fs", append([]string{"-c", "-1", "-i", "0"}, devname)...).Run()
|
||||||
default:
|
default:
|
||||||
err = fmt.Errorf("Unsupported filesystem type %s", devices.filesystem)
|
err = fmt.Errorf("Unsupported filesystem type %s", devices.filesystem)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue