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

usage(){
  echo
  echo "Formats the cache partition and installs all necessary files into it."
  echo
  echo "Usage: linbo_initcache_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_initcache

exit $?
