sudo dnf install ansible-freeipa ansible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ "$1" == "--list" ] ; then | |
| cat<<EOF | |
| { | |
| "bash_hosts": { | |
| "hosts": [ | |
| "10.220.21.24", | |
| "10.220.21.27" | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SetEnvIf X-Forwarded-Proto "https" HTTPS=on | |
| Header append Vary: X-Forwarded-Proto | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on | |
| RewriteCond %{HTTPS} !=on | |
| RewriteCond %{HTTP:X-Forwarded-Proto} !https [NC] | |
| RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | |
| </IfModule> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| dnf update -y | |
| dnf install -y vim bash-completion epel-release | |
| dnf repolist | |
| wget -q https://github.com/zellij-org/zellij/releases/latest/download/zellij-x86_64-unknown-linux-musl.tar.gz -O /tmp/zellij.tar.gz | |
| sudo tar -xzvf /tmp/zellij.tar.gz -C /usr/local/bin/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| sudo dnf update -y | |
| sudo dnf install -y vim bash-completion epel-release | |
| sudo dnf repolist | |
| if [ ! -f /usr/local/bin/zellij ]; | |
| then | |
| wget -q https://github.com/zellij-org/zellij/releases/latest/download/zellij-x86_64-unknown-linux-musl.tar.gz -O /tmp/zellij.tar.gz | |
| sudo tar -xzvf /tmp/zellij.tar.gz -C /usr/local/bin/ | |
| sudo chmod 755 /usr/local/bin/zellij |
I hereby claim:
- I am mrlpm on github.
- I am binary (https://keybase.io/binary) on keybase.
- I have a public key ASBKz9fuw8syqsDfuVyn7uX7KbY7PmIh1HA9Zam_W2lbIQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .login-form-flex { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100%; | |
| } | |
| .button-flex-container { | |
| display: flex; | |
| width: 100%; |
Social login is the fastest way to engage users. And luckily firebase has done the hard work for us. In this post we will configure google login in no time!
1.1.1: Head to firebase and open your project
Ref.: https://man.archlinux.org/man/nmcli-examples.7.en
- Create an script in /etc/NetworkManager/dispatcher.d/
cat << EOF |sudo tee /etc/NetworkManager/dispatcher.d/wifi-ether.sh
#!/bin/bash
export LC_ALL=C
enable_disable_wifi ()