void.sh: split disk_tools

This commit is contained in:
Érico Rolim 2020-05-12 20:41:18 -03:00
parent 3982d30094
commit 39a5cd136c
1 changed files with 10 additions and 5 deletions

View File

@ -13,13 +13,11 @@ function base () {
xbps-install \ xbps-install \
chrony \ chrony \
elogind \ elogind \
fscrypt \
iwd \ iwd \
udisks2 \
vsv vsv
} }
function base_desc () { function base_desc () {
echo "Install base system utilities, with encryption and UEFI support." echo "Install base system utilities."
} }
function luks () { function luks () {
@ -39,6 +37,13 @@ function uefi_bundle_desc () {
echo "Install tools for creating UEFI bundles." echo "Install tools for creating UEFI bundles."
} }
function disk_tools () {
xbps-install fscrypt udisks2
}
function disk_tools_desc () {
echo "Install fscrypt and UDisks2"
}
function refind () { function refind () {
xbps-install refind xbps-install refind
} }
@ -306,8 +311,8 @@ function ate_desc () {
MOST_PACKAGES="base term intel fonts themes wm audio media MOST_PACKAGES="base term intel fonts themes wm audio media
dev qt5 mozzila pdf popcorn" dev qt5 mozzila pdf popcorn"
COMPLEMENT_PACKAGES="uefi_bundle luks zfs security refind COMPLEMENT_PACKAGES="uefi_bundle disk_tools luks zfs security
emacs office flatpak embedded kicad ate nonfree" refind emacs office flatpak embedded kicad ate nonfree"
function install_most () { function install_most () {
for target in $MOST_PACKAGES for target in $MOST_PACKAGES