Added redhat scripts

This commit is contained in:
2021-11-24 09:41:28 +01:00
parent 24c1d834fd
commit a7ebc3ba40
26 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
install_etcher() {
echo 'Installing Etcher'
echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/dnf/sources.list.d/balena-etcher.list
sudo dnf-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 379CE192D401AB61
sudo dnf update -y
sudo dnf install balena-etcher-electron -y
}