Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
binli committed Sep 12, 2024
1 parent 6157b35 commit 1e9c4fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subiquity/server/controllers/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ async def run_curtin_step(name, stages, step_config, source=None):
context=context, rp=rp, casper_uuid=new_casper_uuid
)
else:
await self.maybe_configure_exiting_rp_boot(context=context)
await self.maybe_configure_existing_rp_boot(context=context)

async def adjust_rp(self, rp: Partition, mp: Mountpoint) -> str:
if self.app.opts.dry_run:
Expand Down Expand Up @@ -544,7 +544,7 @@ async def configure_rp_boot(self, context, rp: Partition, casper_uuid: str):
if self.model.target is not None and not self.opts.dry_run:
await self.configure_rp_boot_grub(context=context, rp=rp)

async def maybe_configure_exiting_rp_boot(self, context):
async def maybe_configure_existing_rp_boot(self, context):
# We are not creating a reset partition here if we are running
# from one we still want to configure booting from it.

Expand Down

0 comments on commit 1e9c4fb

Please sign in to comment.