Quellcode durchsuchen

Show irc password on admin control panel

Bob Mottram vor 9 Jahren
Ursprung
Commit
ae34e8d144
1 geänderte Dateien mit 12 neuen und 4 gelöschten Zeilen
  1. 12
    4
      src/freedombone-controlpanel

+ 12
- 4
src/freedombone-controlpanel Datei anzeigen

632
            --msgbox $"Password for $SELECTED_USERNAME was changed" 6 40
632
            --msgbox $"Password for $SELECTED_USERNAME was changed" 6 40
633
 }
633
 }
634
 
634
 
635
+function irc_show_password {
636
+    IRC_PASSWORD=$(cat /etc/ngircd/ngircd.conf | grep "Password =" | head -n 1 | awk -F '=' '{print $2}')
637
+    dialog --title $"IRC Password" \
638
+           --msgbox "$IRC_PASSWORD" 4 40
639
+}
640
+
635
 function irc_set_global_password {
641
 function irc_set_global_password {
636
     dialog --title $"IRC Password" \
642
     dialog --title $"IRC Password" \
637
            --clear \
643
            --clear \
1834
                --title $"IRC Menu" \
1840
                --title $"IRC Menu" \
1835
                --radiolist $"Choose an operation:" 14 70 4 \
1841
                --radiolist $"Choose an operation:" 14 70 4 \
1836
                1 $"Set a password for all IRC users" off \
1842
                1 $"Set a password for all IRC users" off \
1837
-               2 $"Access via the onion address" off \
1838
-               3 $"Exit" on 2> $data
1843
+               2 $"Show current IRC login password" off \
1844
+               3 $"Access via the onion address" off \
1845
+               4 $"Exit" on 2> $data
1839
         sel=$?
1846
         sel=$?
1840
         case $sel in
1847
         case $sel in
1841
             1) break;;
1848
             1) break;;
1843
         esac
1850
         esac
1844
         case $(cat $data) in
1851
         case $(cat $data) in
1845
             1) irc_set_global_password;;
1852
             1) irc_set_global_password;;
1846
-            2) irc_via_onion;;
1847
-            3) break;;
1853
+            2) irc_show_password;;
1854
+            3) irc_via_onion;;
1855
+            4) break;;
1848
         esac
1856
         esac
1849
     done
1857
     done
1850
 }
1858
 }