fix installer.py inconsistent tabs/spaces error
This commit is contained in:
parent
55931a98fb
commit
67b4d5d551
|
|
@ -15,18 +15,18 @@ class Installer():
|
||||||
It also wraps :py:func:`~archinstall.Installer.pacstrap` among other things.
|
It also wraps :py:func:`~archinstall.Installer.pacstrap` among other things.
|
||||||
|
|
||||||
:param partition: Requires a partition as the first argument, this is
|
:param partition: Requires a partition as the first argument, this is
|
||||||
so that the installer can mount to `mountpoint` and strap packages there.
|
so that the installer can mount to `mountpoint` and strap packages there.
|
||||||
:type partition: class:`archinstall.Partition`
|
:type partition: class:`archinstall.Partition`
|
||||||
|
|
||||||
:param boot_partition: There's two reasons for needing a boot partition argument,
|
:param boot_partition: There's two reasons for needing a boot partition argument,
|
||||||
The first being so that `mkinitcpio` can place the `vmlinuz` kernel at the right place
|
The first being so that `mkinitcpio` can place the `vmlinuz` kernel at the right place
|
||||||
during the `pacstrap` or `linux` and the base packages for a minimal installation.
|
during the `pacstrap` or `linux` and the base packages for a minimal installation.
|
||||||
The second being when :py:func:`~archinstall.Installer.add_bootloader` is called,
|
The second being when :py:func:`~archinstall.Installer.add_bootloader` is called,
|
||||||
A `boot_partition` must be known to the installer before this is called.
|
A `boot_partition` must be known to the installer before this is called.
|
||||||
:type boot_partition: class:`archinstall.Partition`
|
:type boot_partition: class:`archinstall.Partition`
|
||||||
|
|
||||||
:param profile: A profile to install, this is optional and can be called later manually.
|
:param profile: A profile to install, this is optional and can be called later manually.
|
||||||
This just simplifies the process by not having to call :py:func:`~archinstall.Installer.install_profile` later on.
|
This just simplifies the process by not having to call :py:func:`~archinstall.Installer.install_profile` later on.
|
||||||
:type profile: str, optional
|
:type profile: str, optional
|
||||||
|
|
||||||
:param hostname: The given /etc/hostname for the machine.
|
:param hostname: The given /etc/hostname for the machine.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue