From 9af153d466cb6948a85f9d9cae77e2363978433f Mon Sep 17 00:00:00 2001 From: Narvin Singh Date: Sat, 2 Jan 2021 12:40:35 -0500 Subject: [PATCH] Feat: Change reserved namespace from res to daem --- avdd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/avdd b/avdd index 2164e37..92514f6 100755 --- a/avdd +++ b/avdd @@ -124,13 +124,13 @@ trap "rm -f ${FIFO}" EXIT while :; do while read -r fifo_mod_list; do case "${fifo_mod_list}" in - res_all) + daem_all) process_mods "${mods[@]}" ;; - res_quit) + daem_quit) exit 0 ;; - res_*) + daem_*) ;; *) IFS=', ' read -r -a fifo_mods <<< "${fifo_mod_list}"