#!/bin/sh
#
# linbo_partition_format
# thomas@linuxmuster.net
# 20250423
#

usage(){
  echo
  echo "Partitions the hard drive and formats the partitions according to start.conf."
  echo
  echo "Usage: linbo_partition_format [help]"
  echo
  exit 0
}

# print help
[ "$1" = "help" ] && usage

# get environment
source /usr/share/linbo/shell_functions
echo "### $timestamp $(basename "$0") ###"

export FORMAT="yes"
linbo_partition $@

exit $?
