mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Use /etc/nanosize.txt
This commit is contained in:
parent
b000d6063f
commit
62d01a53f6
@ -58,8 +58,6 @@ function detect_slice_info() {
|
||||
$REAL_BOOT_DEVICE=trim(`/sbin/glabel list | /usr/bin/grep -B2 ufs/{$BOOT_DEVICE} | /usr/bin/head -n 1 | /usr/bin/cut -f3 -d' '`);
|
||||
$BOOT_DRIVE=trim(`/sbin/glabel list | /usr/bin/grep -B2 ufs/pfsense | /usr/bin/head -n 1 | /usr/bin/cut -f3 -d' ' | /usr/bin/cut -d's' -f1`);
|
||||
|
||||
$NANOBSD_SIZE = trim(`/sbin/fdisk ${COMPLETE_PATH} | /usr/bin/grep Meg | /usr/bin/awk '{ print $5 }' | /usr/bin/cut -d"(" -f2`);
|
||||
|
||||
// Detect which slice is active and set information.
|
||||
if(strstr($REAL_BOOT_DEVICE, "s1")) {
|
||||
$SLICE="2";
|
||||
@ -97,6 +95,8 @@ detect_slice_info();
|
||||
|
||||
<?php
|
||||
|
||||
$NANOBSD_SIZE = file_get_contents("/etc/nanosize.txt");
|
||||
|
||||
if($_POST['bootslice']) {
|
||||
echo <<<EOF
|
||||
<div id="loading">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user