index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | David Runge <dvzrv@archlinux.org> | 2020-07-11 18:13:20 +0200 |
---|---|---|
committer | David Runge <dvzrv@archlinux.org> | 2020-07-11 20:58:01 +0200 |
commit | 043262b5f71e3030ad5553597b0e9696f6ff56b2 (patch) | |
tree | c77adfaca93127661d7fc2f5c0b1e95c7cfd6af4 /install/archiso_pxe_http | |
parent | ab2b8f8286383599b76f9f2db450ac417bd3fc1c (diff) |
-rw-r--r-- | install/archiso_pxe_http | 6 |
diff --git a/install/archiso_pxe_http b/install/archiso_pxe_http index 9ce9726..3353eb7 100644 --- a/install/archiso_pxe_http +++ b/install/archiso_pxe_http @@ -1,11 +1,11 @@ -#!/bin/bash +#!/usr/bin/env bash build() { add_runscript add_binary curl - add_file $(readlink -f /etc/ssl/certs/ca-certificates.crt) /etc/ssl/certs/ca-certificates.crt + add_file "$(readlink -f /etc/ssl/certs/ca-certificates.crt)" /etc/ssl/certs/ca-certificates.crt } help() { @@ -13,5 +13,3 @@ cat<<HELPEOF This hook loads the necessary modules for boot via PXE and HTTP. HELPEOF } - -# vim: set ft=sh ts=4 sw=4 et: |