mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- Show free space of currently mounted partitions. Should help with people running out of free space and ending up with non-working system. In future, this module could emit more visible messages. - Show and allow expanding root partition to help people who have written FreedomBox images to higher capacity SD cards. Very selective and restrictive checks to minimize problems. - Automated tests to ensure expansion works in non-trivial senarious.
101 lines
2.7 KiB
Python
101 lines
2.7 KiB
Python
#
|
|
# This file is part of Plinth.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
"""
|
|
Plinth module to manage disks.
|
|
"""
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
import json
|
|
import logging
|
|
import subprocess
|
|
|
|
from plinth import actions
|
|
from plinth import cfg
|
|
|
|
|
|
version = 1
|
|
|
|
depends = ['system']
|
|
|
|
title = _('Disks')
|
|
|
|
description = []
|
|
|
|
service = None
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def init():
|
|
"""Intialize the module."""
|
|
menu = cfg.main_menu.get('system:index')
|
|
menu.add_urlname(title, 'glyphicon-hdd', 'disks:index')
|
|
|
|
|
|
def get_disks():
|
|
"""Return the list of disks and free space available."""
|
|
command = ['df', '--exclude-type=tmpfs', '--exclude-type=devtmpfs',
|
|
'--output=source,target,fstype,size,used,pcent',
|
|
'--human-readable']
|
|
try:
|
|
process = subprocess.run(command, stdout=subprocess.PIPE, check=True)
|
|
except subprocess.CalledProcessError as exception:
|
|
logger.exception('Error getting disk information: %s', exception)
|
|
return []
|
|
|
|
output = process.stdout.decode()
|
|
|
|
disks = []
|
|
for line in output.splitlines()[1:]:
|
|
parts = line.split()
|
|
keys = ('device', 'mount_point', 'file_system_type', 'size', 'used',
|
|
'percentage_used')
|
|
disk = dict(zip(keys, parts))
|
|
disk['percentage_used'] = int(disk['percentage_used'].rstrip('%'))
|
|
disks.append(disk)
|
|
|
|
return disks
|
|
|
|
|
|
def get_root_device(disks):
|
|
"""Return the root partition's device from list of partitions."""
|
|
devices = [disk['device'] for disk in disks if disk['mount_point'] == '/']
|
|
try:
|
|
return devices[0]
|
|
except IndexError:
|
|
return None
|
|
|
|
|
|
def is_expandable(device):
|
|
"""Return the list of partitions that can be expanded."""
|
|
if not device:
|
|
return False
|
|
|
|
try:
|
|
output = actions.superuser_run(
|
|
'disks', ['is-partition-expandable', device])
|
|
except actions.ActionError:
|
|
return False
|
|
|
|
return int(output.strip())
|
|
|
|
|
|
def expand_partition(device):
|
|
"""Expand a partition."""
|
|
actions.superuser_run('disks', ['expand-partition', device])
|