We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f87a2 commit be02a27Copy full SHA for be02a27
2 files changed
distro_extractor/arch-based/inc.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+
3
+PM=arch
4
5
+function distro_install_command() {
6
+ packages=$(cat "$NICE_PRESET_PATH/packages.${PM}.txt" | xargs)
7
+ echo "pacman -Sy --noconfirm $packages"
8
+}
distro_extractor/artix/inc.sh
@@ -1,6 +1,7 @@
#!/bin/bash
-PM=arch
+source distro_extractor/arch-based/inc.sh || exit 1
VM_USER=artix
VM_PASS=$VM_USER
@@ -17,8 +18,3 @@ function boot_info_qemu() {
17
18
echo "Run '/bin/sshd'"
19
echo "For future password prompt write $VM_PASS"
20
}
-
21
-function distro_install_command() {
22
- packages=$(cat "$NICE_PRESET_PATH/packages.${PM}.txt" | xargs)
23
- echo "pacman -Sy --noconfirm $packages"
24
-}
0 commit comments