From fd10fb79345c90330049854b3bf7fce791e08863 Mon Sep 17 00:00:00 2001 From: xpetit <32063953+xpetit@users.noreply.github.com> Date: Tue, 2 Mar 2021 17:37:57 +0100 Subject: [PATCH] Fix EOF for real --- sh/debian/ubuntu/configure.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sh/debian/ubuntu/configure.sh b/sh/debian/ubuntu/configure.sh index 24201eab..52f97d27 100755 --- a/sh/debian/ubuntu/configure.sh +++ b/sh/debian/ubuntu/configure.sh @@ -35,14 +35,14 @@ apt-get -yf install # Configure Terminal # Makes bash case-insensitive -cat <<"EOF">> /etc/inputrc +cat <> /etc/inputrc set completion-ignore-case set show-all-if-ambiguous On set show-all-if-unmodified On EOF # Enhance Linux prompt -cat <<"EOF"> /etc/issue +cat < /etc/issue Kernel build: \v Kernel package: \r Date: \d \t @@ -54,7 +54,7 @@ EOF # Enable Bash completion apt-get -y install bash-completion -cat <<"EOF">> /etc/bash.bashrc +cat <> /etc/bash.bashrc if ! shopt -oq posix; then if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion @@ -102,7 +102,7 @@ ssh_port=512 # Install dependencies apt-get -y install ssh -cat <<"EOF">> /etc/ssh/sshd_config +cat <> /etc/ssh/sshd_config Port $ssh_port PasswordAuthentication no AllowUsers root @@ -122,7 +122,7 @@ ufw --force enable sed -i -e 's/message=/message_null=/g' /etc/grub.d/10_linux -cat <<"EOF">> /etc/default/grub +cat <> /etc/default/grub GRUB_TIMEOUT=0 GRUB_RECORDFAIL_TIMEOUT=0 GRUB_TERMINAL=console @@ -171,7 +171,7 @@ npm install -g fx wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add - apt-get install -y apt-transport-https -cat <<"EOF"> /etc/apt/sources.list.d/sublime-text.list +cat < /etc/apt/sources.list.d/sublime-text.list deb https://download.sublimetext.com/ apt/stable/ EOF