begin adding chroot commands
This commit is contained in:
parent
b665c37ad4
commit
16c5c1eb66
@ -35,10 +35,10 @@ args = parser.parse_args()
|
|||||||
print("\nParsed arguments: {}".format(args))
|
print("\nParsed arguments: {}".format(args))
|
||||||
# Get root info
|
# Get root info
|
||||||
## Root UUID
|
## Root UUID
|
||||||
root_uuid_command= subprocess.Popen(['/home/ward/pkgs/pikauwu/pkg-pikainstall/pikainstall/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.root, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
root_uuid_command= subprocess.Popen(['/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.root, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
root_uuid = root_uuid_command.stdout.readline().decode("utf-8").strip()
|
root_uuid = root_uuid_command.stdout.readline().decode("utf-8").strip()
|
||||||
## Root Encryption Device
|
## Root Encryption Device
|
||||||
root_encrypt_command = subprocess.Popen(['/home/ward/pkgs/pikauwu/pkg-pikainstall/pikainstall/usr/lib/pika/pikainstall/partition-helper.sh', 'encrypt'] + args.root, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
root_encrypt_command = subprocess.Popen(['/usr/lib/pika/pikainstall/partition-helper.sh', 'encrypt'] + args.root, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
root_encrypt = root_encrypt_command.stdout.readline().decode("utf-8").strip()
|
root_encrypt = root_encrypt_command.stdout.readline().decode("utf-8").strip()
|
||||||
## Print Root info
|
## Print Root info
|
||||||
print("\nRoot UUID: {}".format(root_uuid))
|
print("\nRoot UUID: {}".format(root_uuid))
|
||||||
@ -48,23 +48,23 @@ else:
|
|||||||
print("Root Encryption Device: {}".format(root_encrypt))
|
print("Root Encryption Device: {}".format(root_encrypt))
|
||||||
# Get Boot info
|
# Get Boot info
|
||||||
## Boot UUID
|
## Boot UUID
|
||||||
boot_uuid_command= subprocess.Popen(['/home/ward/pkgs/pikauwu/pkg-pikainstall/pikainstall/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.boot, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
boot_uuid_command= subprocess.Popen(['/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.boot, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
## Print Boot
|
## Print Boot
|
||||||
boot_uuid = boot_uuid_command.stdout.readline().decode("utf-8").strip()
|
boot_uuid = boot_uuid_command.stdout.readline().decode("utf-8").strip()
|
||||||
print("\nBoot UUID: {}".format(boot_uuid))
|
print("\nBoot UUID: {}".format(boot_uuid))
|
||||||
# Get EFI info
|
# Get EFI info
|
||||||
## EFI UUID
|
## EFI UUID
|
||||||
efi_uuid_command= subprocess.Popen(['/home/ward/pkgs/pikauwu/pkg-pikainstall/pikainstall/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.efi, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
efi_uuid_command= subprocess.Popen(['/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.efi, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
efi_uuid = efi_uuid_command.stdout.readline().decode("utf-8").strip()
|
efi_uuid = efi_uuid_command.stdout.readline().decode("utf-8").strip()
|
||||||
## Print EFI Info
|
## Print EFI Info
|
||||||
print("\nEFI UUID: {}".format(efi_uuid))
|
print("\nEFI UUID: {}".format(efi_uuid))
|
||||||
# Get Home info is exists
|
# Get Home info is exists
|
||||||
if args.home is not None:
|
if args.home is not None:
|
||||||
## Home UUID
|
## Home UUID
|
||||||
home_uuid_command = subprocess.Popen(['/home/ward/pkgs/pikauwu/pkg-pikainstall/pikainstall/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.home, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
home_uuid_command = subprocess.Popen(['/usr/lib/pika/pikainstall/partition-helper.sh', 'uuid'] + args.home, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
home_uuid = home_uuid_command.stdout.readline().decode("utf-8").strip()
|
home_uuid = home_uuid_command.stdout.readline().decode("utf-8").strip()
|
||||||
## Encryption
|
## Encryption
|
||||||
home_encrypt_command = subprocess.Popen(['/home/ward/pkgs/pikauwu/pkg-pikainstall/pikainstall/usr/lib/pika/pikainstall/partition-helper.sh', 'encrypt'] + args.home, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
home_encrypt_command = subprocess.Popen(['/usr/lib/pika/pikainstall/partition-helper.sh', 'encrypt'] + args.home, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
home_encrypt = home_encrypt_command.stdout.readline().decode("utf-8").strip()
|
home_encrypt = home_encrypt_command.stdout.readline().decode("utf-8").strip()
|
||||||
print("\nHome UUID: {}".format(home_uuid))
|
print("\nHome UUID: {}".format(home_uuid))
|
||||||
if home_encrypt == "luks_none":
|
if home_encrypt == "luks_none":
|
||||||
@ -100,6 +100,17 @@ elif args.home is not None:
|
|||||||
|
|
||||||
# With All Checks Clear and info gathered let's start installing
|
# With All Checks Clear and info gathered let's start installing
|
||||||
|
|
||||||
# extract the squashfs image to root from casper
|
## extract the squashfs image to root from casper
|
||||||
squashfs_cmd = ['unsquashfs', '-f', '-d', listToString(args.home), image]
|
squashfs_cmd = ['unsquashfs', '-f', '-d', listToString(args.root), image]
|
||||||
subprocess.run(squashfs_cmd)
|
subprocess.run(squashfs_cmd)
|
||||||
|
|
||||||
|
## Enable bls_boot on EFI partiton
|
||||||
|
efi_flag_cmd = ['/usr/lib/pika/pikainstall/partition-helper.sh', 'flag', listToString(args.efi), 'bls_boot', 'on']
|
||||||
|
subprocess.run(efi_flag_cmd)
|
||||||
|
|
||||||
|
## Run pika-install-script
|
||||||
|
bind_dev_cmd = ['/usr/lib/pika/pikainstall/pika-install-host.sh', listToString(args.root)]
|
||||||
|
subprocess.run(bind_dev_cmd)
|
||||||
|
|
||||||
|
print("System installed!")
|
||||||
|
exit(0)
|
||||||
|
11
pikainstall/usr/lib/pika/pikainstall/pika-install-host.sh
Normal file
11
pikainstall/usr/lib/pika/pikainstall/pika-install-host.sh
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
mkdir -pv "$1"/media/cdrom
|
||||||
|
mount --bind /cdrom "$1"/media/cdrom
|
||||||
|
mount --rbind /dev "$1"/dev
|
||||||
|
mount --rbind /dev/pts "$1"/dev/pts
|
||||||
|
mount --rbind /proc "$1"/proc
|
||||||
|
mount --rbind /sys "$1"/sys
|
||||||
|
mount --rbind /run "$1"/run
|
||||||
|
mkdir -p "$1"/var/cache/apt/archives
|
||||||
|
cp -rvf /cdrom/pool/main/* "$1"/var/cache/apt/archives/
|
||||||
|
chroot /chroot_dir /bin/bash -c "su - -c /usr/lib/pika/pikainstall/pika-install-chroot.sh"
|
Loading…
Reference in New Issue
Block a user