From 4c6053af490e94a36d7790c32b023b7a0e03ad07 Mon Sep 17 00:00:00 2001
From: godp21 <godp21@inf.ufpr.br>
Date: Mon, 24 Apr 2023 11:18:42 -0300
Subject: [PATCH] im testing a script

---
 ZFS-RAIDs.md | 6 ++++--
 push.sh      | 3 ---
 2 files changed, 4 insertions(+), 5 deletions(-)
 delete mode 100644 push.sh

diff --git a/ZFS-RAIDs.md b/ZFS-RAIDs.md
index 4495180..e092e52 100644
--- a/ZFS-RAIDs.md
+++ b/ZFS-RAIDs.md
@@ -76,7 +76,9 @@ It's important to know that a RAID0 and RAID1 requires at least two disks, and a
 ## Cache in ZFS
 ### Read caching:
 ARC (**A**daptive **R**placement **C**ache)
-: Simple RAM cache, hot data blocks are stored in memory for faster acces, ZFS tries to fill all RAM disponible at max, if max level is achieved, oldest blocks gets flushed from memory and needs to be taken in the disk if a read operation requires then again.
+
+Simple RAM cache, hot data blocks are stored in memory for faster acces, ZFS tries to fill all RAM disponible at max, if max level is achieved, oldest blocks gets flushed from memory and needs to be taken in the disk if a read operation requires then again.
 
 L2ARC (**L**evel **2** **ARC**)
-: Adds SSDs in cache flow so oldest data removed from RAM gets on a device faster than hard drives.
+
+Adds SSDs in cache flow so oldest data removed from RAM gets on a device faster than hard drives.
diff --git a/push.sh b/push.sh
deleted file mode 100644
index 250aaa6..0000000
--- a/push.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-[[ -z "$1" ]] && echo "comment needed" && return 1
-
-git add . && git commit -m "$1" && git push
-- 
GitLab