From 270ead14c5d094982afb6b90f21a8936d18426d0 Mon Sep 17 00:00:00 2001 From: earnest ma Date: Thu, 2 Dec 2021 23:39:36 -0500 Subject: [PATCH] bootstrap.sh: Fix issues from installs on 2 fresh F34 systems --- bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 6592408..e76d318 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -13,7 +13,7 @@ # TODO run with arg to install an $optional_things # Permissive SELinux -sudo sed -i "s/SELINUX=enforcing/SELINUX=permissive" /etc/selinux/config +sudo sed -i "s/SELINUX=enforcing/SELINUX=permissive/g" /etc/selinux/config sudo setenforce 0 # config file applies upon reboots # Update all repo and packages @@ -23,7 +23,7 @@ sudo dnf upgrade --refresh -y sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -yq # Install -sudo dnf install -y neovim mpv +sudo dnf install -y neovim mpv util-linux-user sudo dnf install -y seahorse kleopatra # should be done already optional_things="install_dev @@ -81,7 +81,7 @@ install_gaming(){ } install_nextcloud_client(){ - sudo dnf install -y nextcloud_client + sudo dnf install -y nextcloud-client } install_discord(){