DEVELOPMENT ENVIRONMENT

~liljamo/src.quest-anemos

b563d99201711bf8d432f4900d5da61f3b17c4b5 — Jonni Liljamo 7 days ago be1a40a
feat(sqmeta): change fstab creation to just echo
1 files changed, 2 insertions(+), 2 deletions(-)

M sqmeta/IMGBUILD
M sqmeta/IMGBUILD => sqmeta/IMGBUILD +2 -2
@@ 54,9 54,9 @@ setup() {
  mount /dev/vda1 "${imgroot}/boot"
  mkdir "${imgroot}/etc"
  opts=$(findmnt -no OPTIONS /dev/vda2)
  printf "UUID=%s\t/\t%s\t%s\t0 1\n" "${uuidr}" "ext4" "${opts}" > "${imgroot}/etc/fstab"
  echo "UUID=$uuidr / ext4 $opts 0 1" > "${imgroot}/etc/fstab"
  opts=$(findmnt -no OPTIONS /dev/vda1)
  printf "UUID=%s\t/boot\t%s\t%s\t0 2\n" "${uuidb}" "ext2" "${opts},noauto" >> "${imgroot}/etc/fstab"
  echo "UUID=$uuidb /boot ext2 $opts,noauto 0 2" >> "${imgroot}/etc/fstab"
}

cleanup() {