Merge pull request #12 from microsoft/dev/t-isehgal/ensure-swap-file-recreated

Ensuring swap file gets recreated when user downsizes their VM
This commit is contained in:
ishaansehgal99 2022-08-01 12:09:06 -07:00 коммит произвёл GitHub
Родитель a81c01c23a ba39eab83c
Коммит f6b4c77030
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1747,7 +1747,7 @@ int main(int argc, char *argv[])
log_info("Swap file not found");
}
if (swap && swap->capacity < needed_swap) {
if (swap && swap->capacity != needed_swap) {
log_info("Swap file %s has capacity of %zu MB but needs %zu MB. Recreating. "
"System will run without a swap file while this is being set up.",
swap->path, swap->capacity / MEGA_BYTES, needed_swap / MEGA_BYTES);