summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fedele <dan.fedele@gmail.com>2022-11-07 09:49:21 -0500
committerDan Fedele <dan.fedele@gmail.com>2022-11-07 09:49:21 -0500
commit2a79c8c3499437ede38c81c82c2ca48b91ba3191 (patch)
tree20cab40e2cc68f94820a48a217f2f25187e7a443
parentc7145109b9df30d139ec1175daab36d495fadbbd (diff)
Fixed horrible typo that broke the whole thing
-rw-r--r--README.md2
-rw-r--r--kali.yml7
-rw-r--r--setup.sh2
3 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index b26fde7..3c46a84 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ And if you don't like my modifications, I encourage you to fork this repo and ma
## Usage
If you just started up a new instance of **Kali**, to get it to a "proper working setup" that I've come to like, simply run the following command from a terminal:
-`git clone https://github.com/AgroDan/Golden-Kali.git && sudo bash ./Golden-Kali/setup.sh`
+`git clone https://github.com/AgroDan/golden-kali.git && sudo bash ./golden-kali/setup.sh`
The previous command used to be a `curl` instruction piped to `bash`. I changed that to a `git clone` instead to change up the way files would be included. It was cleaner and I was able to mess around with. I may be installing malicious software, but I wish no mal-intent to you. Peace, love, and hack all the things.
diff --git a/kali.yml b/kali.yml
index 4bf2127..59f8735 100644
--- a/kali.yml
+++ b/kali.yml
@@ -9,8 +9,9 @@
ysoserial_jar: "https://github.com/frohoff/ysoserial/releases/latest/download/ysoserial-all.jar"
kitty_installer: "https://sw.kovidgoyal.net/kitty/installer.sh"
tasks:
- - ansible.builtin.fail:
- msg: "This playbook must be run properly! Execute sudo bash setup.sh"
+ - name: Confirming playbook was run properly
+ ansible.builtin.fail:
+ msg: "Do not call this playbook directly! Execute sudo bash setup.sh"
when: tmux is not defined or zsh_func is not defined
- name: Add Docker repo key
@@ -194,7 +195,7 @@
user_install: no
- name: Install Kitty Terminal Emulator 🐱
- ansible.builtin.command: "/usr/bin/curl -sL {{ kitty_installer }} | sh /dev/sdtin dest=/opt launch=n"
+ ansible.builtin.command: "/usr/bin/curl -sL {{ kitty_installer }} | sh /dev/stdin dest=/opt launch=n"
- name: Create Desktop Icon for Kitty 🐱
ansible.builtin.copy:
diff --git a/setup.sh b/setup.sh
index 50a7f46..7bc8a54 100644
--- a/setup.sh
+++ b/setup.sh
@@ -37,4 +37,4 @@ echo "***********************************"
echo "* Done! *"
echo "***********************************"
-echo "You should be set up. Check above for any errors."
+echo "You should reboot your system now."