add # vim: set ft=sh ts=4 sw=4 et:

This commit is contained in:
Tobias Powalowski 2023-01-27 08:30:21 +01:00
parent 87a995a951
commit 2a8fe1a448
13 changed files with 13 additions and 0 deletions

View file

@ -28,3 +28,4 @@ echo "${_PACKAGE}" >binary.txt
for i in $(pacman -Ql ${_PACKAGE} | grep "/usr/bin/..*"$ | cut -d' ' -f2); do for i in $(pacman -Ql ${_PACKAGE} | grep "/usr/bin/..*"$ | cut -d' ' -f2); do
command -v "${i}" &>/dev/null || echo "${i}" >>binary.txt command -v "${i}" &>/dev/null || echo "${i}" >>binary.txt
done 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

View file

@ -67,3 +67,4 @@ chown "${_USER}":"${_GROUP}" "${_PACMAN_ARCH_CHROOT}"{,.sig} || exit 1
echo "Uploading tarball to ${_SERVER}:${_SERVER_PACMAN_ARCH}..." echo "Uploading tarball to ${_SERVER}:${_SERVER_PACMAN_ARCH}..."
sudo -u "${_USER}" scp "${_PACMAN_ARCH_CHROOT}"{,.sig} "${_SERVER}:${_SERVER_PACMAN_ARCH}" || exit 1 sudo -u "${_USER}" scp "${_PACMAN_ARCH_CHROOT}"{,.sig} "${_SERVER}:${_SERVER_PACMAN_ARCH}" || exit 1
echo "Finished." echo "Finished."
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -59,3 +59,4 @@ _change_pacman_conf "${1}" || exit 1
_reproducibility "${1}" _reproducibility "${1}"
_set_hostname "${1}" || exit 1 _set_hostname "${1}" || exit 1
echo "Finished container setup in ${1}." echo "Finished container setup in ${1}."
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -47,3 +47,4 @@ if echo "${_BASENAME}" | grep -qw aarch64 || echo "${_BASENAME}" | grep -qw x86_
else else
echo "Finished Image creation." echo "Finished Image creation."
fi fi
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -10,3 +10,4 @@ echo "Starting release creation in ${1}..."
_create_iso "$@" || exit 1 _create_iso "$@" || exit 1
echo "Finished release creation in ${1}." echo "Finished release creation in ${1}."
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -41,3 +41,4 @@ _move_packages "${_REPODIR}" "${1}" || exit 1
_cleanup_repodir "${_REPODIR}" || exit 1 _cleanup_repodir "${_REPODIR}" || exit 1
_create_archboot_db "${1}" || exit 1 _create_archboot_db "${1}" || exit 1
echo "Finished repository creation in ${_REPODIR}." echo "Finished repository creation in ${_REPODIR}."
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -15,3 +15,4 @@ _server_release || exit 1
if echo "${_BASENAME}" | grep -qw x86_64; then if echo "${_BASENAME}" | grep -qw x86_64; then
_x86_64_pacman_restore || exit 1 _x86_64_pacman_restore || exit 1
fi fi
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -14,3 +14,4 @@ _start_gnome_wayland() {
chmod 755 /usr/bin/gnome-wayland chmod 755 /usr/bin/gnome-wayland
gnome-wayland gnome-wayland
} }
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -16,3 +16,4 @@ _start_gnome() {
startx >/dev/tty8 2>&1 startx >/dev/tty8 2>&1
echo -e "To relaunch \033[1mGNOME\033[0m desktop use: \033[92mstartx\033[0m" echo -e "To relaunch \033[1mGNOME\033[0m desktop use: \033[92mstartx\033[0m"
} }
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -13,3 +13,4 @@ _start_plasma_wayland() {
chmod 755 /usr/bin/plasma-wayland chmod 755 /usr/bin/plasma-wayland
plasma-wayland plasma-wayland
} }
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -13,3 +13,4 @@ _start_plasma() {
startx >/dev/tty8 2>&1 startx >/dev/tty8 2>&1
echo -e "To relaunch \033[1mKDE/Plasma\033[0m desktop use: \033[92mstartx\033[0m" echo -e "To relaunch \033[1mKDE/Plasma\033[0m desktop use: \033[92mstartx\033[0m"
} }
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -699,3 +699,4 @@ Name=Tigervnc
Exec=x0vncserver -rfbauth /etc/tigervnc/passwd Exec=x0vncserver -rfbauth /etc/tigervnc/passwd
EOF EOF
} }
# vim: set ft=sh ts=4 sw=4 et:

View file

@ -255,3 +255,4 @@ _start_xfce() {
startxfce4 >/dev/tty8 2>&1 startxfce4 >/dev/tty8 2>&1
echo -e "To relaunch \033[1mXFCE\033[0m desktop use: \033[92mstartxfce4\033[0m" echo -e "To relaunch \033[1mXFCE\033[0m desktop use: \033[92mstartxfce4\033[0m"
} }
# vim: set ft=sh ts=4 sw=4 et: