diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/autodetect | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/autodetect b/install/autodetect index 118c9a5..b195913 100644 --- a/install/autodetect +++ b/install/autodetect @@ -21,7 +21,7 @@ build() if [ ${UID} -eq 0 -o "$(groups | grep disk)" != "" ]; then fss=$(findfs | sort | uniq) if [ -z "${fss}" ]; then - err "Root file system type detection failed." + error "Root file system type detection failed." autodetect_fs_detection_failed=1 fi for fs in ${fss}; do @@ -49,7 +49,7 @@ build() else autodetect_fs_detection_failed=1 autodetect_raid_detection_failed=1 - err "User does not have proper permissions to read superblocks, raid and filesystem modules are not detected" + error "User does not have proper permissions to read superblocks, raid and filesystem modules are not detected" fi for m in ${AUTODETECT}; do |