bootstrap.sh: Fix issues from installs on 2 fresh F34 systems
parent
f3b88c4c4a
commit
270ead14c5
|
@ -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(){
|
||||
|
|
Loading…
Reference in New Issue