From 2a8fe1a4487a135bc140eaeca18f0d0dd689de19 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 27 Jan 2023 08:30:21 +0100 Subject: [PATCH] add # vim: set ft=sh ts=4 sw=4 et: --- usr/bin/archboot-binary-check.sh | 1 + usr/lib/archboot/run/chroot-tarball.sh | 1 + usr/lib/archboot/run/container.sh | 1 + usr/lib/archboot/run/iso.sh | 1 + usr/lib/archboot/run/release.sh | 1 + usr/lib/archboot/run/repository.sh | 1 + usr/lib/archboot/run/server-release.sh | 1 + usr/lib/archboot/update-installer/gnome-wayland.sh | 1 + usr/lib/archboot/update-installer/gnome.sh | 1 + usr/lib/archboot/update-installer/plasma-wayland.sh | 1 + usr/lib/archboot/update-installer/plasma.sh | 1 + usr/lib/archboot/update-installer/update-installer.sh | 1 + usr/lib/archboot/update-installer/xfce.sh | 1 + 13 files changed, 13 insertions(+) diff --git a/usr/bin/archboot-binary-check.sh b/usr/bin/archboot-binary-check.sh index f90954d07..5e6175c13 100755 --- a/usr/bin/archboot-binary-check.sh +++ b/usr/bin/archboot-binary-check.sh @@ -28,3 +28,4 @@ echo "${_PACKAGE}" >binary.txt for i in $(pacman -Ql ${_PACKAGE} | grep "/usr/bin/..*"$ | cut -d' ' -f2); do command -v "${i}" &>/dev/null || echo "${i}" >>binary.txt done +# vim: set ft=sh ts=4 sw=4 et: archboot-bootloader.sh archboot-copy-mountpoint.sh archboot-hwsim.sh archboot-km.sh archboot-mkkeys.sh archboot-quickinst.sh archboot-restore-usbstick.sh archboot-rsync-backup.sh archboot-secureboot-keys.sh archboot-setup.sh archboot-tz.sh archboot-update-installer.sh diff --git a/usr/lib/archboot/run/chroot-tarball.sh b/usr/lib/archboot/run/chroot-tarball.sh index 0f2e82d0c..2ce65bcf7 100755 --- a/usr/lib/archboot/run/chroot-tarball.sh +++ b/usr/lib/archboot/run/chroot-tarball.sh @@ -67,3 +67,4 @@ chown "${_USER}":"${_GROUP}" "${_PACMAN_ARCH_CHROOT}"{,.sig} || exit 1 echo "Uploading tarball to ${_SERVER}:${_SERVER_PACMAN_ARCH}..." sudo -u "${_USER}" scp "${_PACMAN_ARCH_CHROOT}"{,.sig} "${_SERVER}:${_SERVER_PACMAN_ARCH}" || exit 1 echo "Finished." +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/run/container.sh b/usr/lib/archboot/run/container.sh index 466ceb5b2..8cf343068 100755 --- a/usr/lib/archboot/run/container.sh +++ b/usr/lib/archboot/run/container.sh @@ -59,3 +59,4 @@ _change_pacman_conf "${1}" || exit 1 _reproducibility "${1}" _set_hostname "${1}" || exit 1 echo "Finished container setup in ${1}." +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/run/iso.sh b/usr/lib/archboot/run/iso.sh index a0231d4ff..03229731c 100755 --- a/usr/lib/archboot/run/iso.sh +++ b/usr/lib/archboot/run/iso.sh @@ -47,3 +47,4 @@ if echo "${_BASENAME}" | grep -qw aarch64 || echo "${_BASENAME}" | grep -qw x86_ else echo "Finished Image creation." fi +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/run/release.sh b/usr/lib/archboot/run/release.sh index 28cd19f37..c4ed86be0 100755 --- a/usr/lib/archboot/run/release.sh +++ b/usr/lib/archboot/run/release.sh @@ -10,3 +10,4 @@ echo "Starting release creation in ${1}..." _create_iso "$@" || exit 1 echo "Finished release creation in ${1}." +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/run/repository.sh b/usr/lib/archboot/run/repository.sh index bbb9ad0a3..e6db0c17a 100755 --- a/usr/lib/archboot/run/repository.sh +++ b/usr/lib/archboot/run/repository.sh @@ -41,3 +41,4 @@ _move_packages "${_REPODIR}" "${1}" || exit 1 _cleanup_repodir "${_REPODIR}" || exit 1 _create_archboot_db "${1}" || exit 1 echo "Finished repository creation in ${_REPODIR}." +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/run/server-release.sh b/usr/lib/archboot/run/server-release.sh index e6a2ba8cc..f4f5e3d53 100755 --- a/usr/lib/archboot/run/server-release.sh +++ b/usr/lib/archboot/run/server-release.sh @@ -15,3 +15,4 @@ _server_release || exit 1 if echo "${_BASENAME}" | grep -qw x86_64; then _x86_64_pacman_restore || exit 1 fi +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/update-installer/gnome-wayland.sh b/usr/lib/archboot/update-installer/gnome-wayland.sh index 0545af211..0bf966915 100644 --- a/usr/lib/archboot/update-installer/gnome-wayland.sh +++ b/usr/lib/archboot/update-installer/gnome-wayland.sh @@ -14,3 +14,4 @@ _start_gnome_wayland() { chmod 755 /usr/bin/gnome-wayland gnome-wayland } +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/update-installer/gnome.sh b/usr/lib/archboot/update-installer/gnome.sh index a3401f5f6..aa93580c3 100644 --- a/usr/lib/archboot/update-installer/gnome.sh +++ b/usr/lib/archboot/update-installer/gnome.sh @@ -16,3 +16,4 @@ _start_gnome() { startx >/dev/tty8 2>&1 echo -e "To relaunch \033[1mGNOME\033[0m desktop use: \033[92mstartx\033[0m" } +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/update-installer/plasma-wayland.sh b/usr/lib/archboot/update-installer/plasma-wayland.sh index 6cd2e39af..76fcc1c63 100644 --- a/usr/lib/archboot/update-installer/plasma-wayland.sh +++ b/usr/lib/archboot/update-installer/plasma-wayland.sh @@ -13,3 +13,4 @@ _start_plasma_wayland() { chmod 755 /usr/bin/plasma-wayland plasma-wayland } +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/update-installer/plasma.sh b/usr/lib/archboot/update-installer/plasma.sh index d2ebb87b5..d45d9aa4e 100644 --- a/usr/lib/archboot/update-installer/plasma.sh +++ b/usr/lib/archboot/update-installer/plasma.sh @@ -13,3 +13,4 @@ _start_plasma() { startx >/dev/tty8 2>&1 echo -e "To relaunch \033[1mKDE/Plasma\033[0m desktop use: \033[92mstartx\033[0m" } +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/update-installer/update-installer.sh b/usr/lib/archboot/update-installer/update-installer.sh index cac4f964a..51387e05a 100644 --- a/usr/lib/archboot/update-installer/update-installer.sh +++ b/usr/lib/archboot/update-installer/update-installer.sh @@ -699,3 +699,4 @@ Name=Tigervnc Exec=x0vncserver -rfbauth /etc/tigervnc/passwd EOF } +# vim: set ft=sh ts=4 sw=4 et: diff --git a/usr/lib/archboot/update-installer/xfce.sh b/usr/lib/archboot/update-installer/xfce.sh index eba48e294..793ea0d72 100644 --- a/usr/lib/archboot/update-installer/xfce.sh +++ b/usr/lib/archboot/update-installer/xfce.sh @@ -255,3 +255,4 @@ _start_xfce() { startxfce4 >/dev/tty8 2>&1 echo -e "To relaunch \033[1mXFCE\033[0m desktop use: \033[92mstartxfce4\033[0m" } +# vim: set ft=sh ts=4 sw=4 et: