From: xf0r3m Date: Tue, 8 Aug 2023 16:27:00 +0000 (+0200) Subject: Dodano opcje '-y' potwierdzającą wykonanie czynności. X-Git-Url: https://gitweb.morketsmerke.org/?a=commitdiff_plain;h=7a50b6ecbe3636d69e99216f3cb1ece82fffb83f;p=idle.git Dodano opcje '-y' potwierdzającą wykonanie czynności. --- diff --git a/fedora.sh b/fedora.sh index 3c91854..0030960 100644 --- a/fedora.sh +++ b/fedora.sh @@ -2,11 +2,11 @@ useradd -m -s /bin/bash rhuser echo "rhuser ALL=(ALL:ALL) NOPASSWD:ALL" >> /etc/sudoers; echo "root ALL=(ALL:ALL) NOPASSWD:ALL" >> /etc/sudoers; -sudo dnf update +sudo dnf update -y sudo dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-rawhide.noarch.rpm sudo dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-rawhide.noarch.rpm -sudo dnf update +sudo dnf update -y sudo dnf install neofetch -y echo "/usr/bin/neofetch" >> /home/rhuser/.bashrc; -sudo dnf install man-db man-pages +sudo dnf install man-db man-pages -y sudo mandb -c diff --git a/opensuse.sh b/opensuse.sh index 56d84e1..0392a2d 100644 --- a/opensuse.sh +++ b/opensuse.sh @@ -10,6 +10,6 @@ if [ $? -eq 0 ]; then zypper install -y neofetch; echo "/usr/bin/neofetch" >> /home/suseuser/.bashrc; - zypper install man man-pages + zypper install -y man man-pages mandb -c fi