소스 검색

Remove unused function

Bob Mottram 8 년 전
부모
커밋
840c5f7976
1개의 변경된 파일2개의 추가작업 그리고 10개의 파일을 삭제
  1. 2
    10
      src/freedombone-utils-setup

+ 2
- 10
src/freedombone-utils-setup 파일 보기

358
     fi
358
     fi
359
 }
359
 }
360
 
360
 
361
-function upgrade_installation {
362
-    # TODO
363
-    echo ''
364
-}
365
-
366
 function disable_nfs_insecure_locks {
361
 function disable_nfs_insecure_locks {
367
     apt-get -yq install nfs-kernel-server
362
     apt-get -yq install nfs-kernel-server
368
     if grep 'insecure_locks' /etc/exports; then
363
     if grep 'insecure_locks' /etc/exports; then
618
     function_check check_system_type
613
     function_check check_system_type
619
     check_system_type
614
     check_system_type
620
 
615
 
621
-    function_check upgrade_installation
622
-    upgrade_installation
623
-
624
     function_check set_default_onion_domains
616
     function_check set_default_onion_domains
625
     set_default_onion_domains
617
     set_default_onion_domains
626
 
618
 
848
     do
840
     do
849
         app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
841
         app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
850
 
842
 
851
-        item_in_array "${app_name}" ${APPS_COMPLETED[@]}
843
+        item_in_array "${app_name}" "${APPS_COMPLETED[@]}"
852
         if [[ $? != 0 ]]; then
844
         if [[ $? != 0 ]]; then
853
             function_check app_is_installed
845
             function_check app_is_installed
854
-            if [[ $(app_is_installed $a) == "1" ]]; then
846
+            if [[ "$(app_is_installed $a)" == "1" ]]; then
855
                 echo ''
847
                 echo ''
856
                 echo ''
848
                 echo ''
857
                 echo $"Upgrading $a"
849
                 echo $"Upgrading $a"