mirror of https://github.com/archzfs/archzfs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
298 B
13 lines
298 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
|
setup_exit() {
|
||
|
msg "Installation complete!"
|
||
|
/usr/bin/sleep 10
|
||
|
/usr/bin/umount /mnt/repo
|
||
|
/usr/bin/umount /mnt/var/cache/pacman/pkg
|
||
|
/usr/bin/umount ${arch_target_dir}
|
||
|
/usr/bin/umount /var/cache/pacman/pkg
|
||
|
/usr/bin/umount /repo
|
||
|
/usr/bin/systemctl reboot
|
||
|
}
|