Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/minimal.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-07-07 23:56:17 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-07-07 23:56:17 +0000
commit60f581319f99afbd678b4f5f56193d588228cbe2 (patch)
tree54bad414cc43893b4316f3c0d9af191ea7ecdea2 /examples/minimal.py
parente17fac498a778d5f6c83a40d2334a2af7a0e5397 (diff)
Added pythons -m module support. __main__.py is the main module entry path, and setup.py now includes the examples (which as been renamed for more convenient module importing) which - enables __main__.py to locate the examples and import them via importlib and execute them.
Diffstat (limited to 'examples/minimal.py')
-rw-r--r--examples/minimal.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/minimal.py b/examples/minimal.py
new file mode 100644
index 00000000..195ee60c
--- /dev/null
+++ b/examples/minimal.py
@@ -0,0 +1,32 @@
+import archinstall, getpass
+
+# Unmount and close previous runs
+archinstall.sys_command(f'umount -R /mnt', surpress_errors=True)
+archinstall.sys_command(f'cryptsetup close /dev/mapper/luksloop', surpress_errors=True)
+
+# Select a harddrive and a disk password
+harddrive = archinstall.select_disk(archinstall.all_disks())
+disk_password = getpass.getpass(prompt='Disk password (won\'t echo): ')
+
+with archinstall.Filesystem(harddrive, archinstall.GPT) as fs:
+ # Use the entire disk instead of setting up partitions on your own
+ fs.use_entire_disk('luks2')
+
+ if harddrive.partition[1].size == '512M':
+ raise OSError('Trying to encrypt the boot partition for petes sake..')
+ harddrive.partition[0].format('fat32')
+
+ with archinstall.luks2(harddrive.partition[1], 'luksloop', disk_password) as unlocked_device:
+ unlocked_device.format('btrfs')
+
+ with archinstall.Installer(unlocked_device, hostname='testmachine') as installation:
+ if installation.minimal_installation():
+ installation.add_bootloader(harddrive.partition[0])
+
+ installation.add_additional_packages(['nano', 'wget', 'git'])
+ installation.install_profile('workstation')
+
+ installation.user_create('anton', 'test')
+ installation.user_set_pw('root', 'toor')
+
+ installation.add_AUR_support() \ No newline at end of file