summaryrefslogtreecommitdiff
path: root/shell-completion
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2020-08-18 15:11:06 +0200
committerLennart Poettering <lennart@poettering.net>2020-08-19 15:46:07 +0200
commitcaf6bd166f6521e1e33a25c39bb2e1b05d61b733 (patch)
treee51ba617202cdf4281ae93295e42e67d929e8d79 /shell-completion
parent1b13600948b9fc5d35b3b643d02e5323f75dd682 (diff)
downloadsystemd-caf6bd166f6521e1e33a25c39bb2e1b05d61b733.tar.gz
homed: default to "btrfs" as fs type in the LUKS backend
Apparently both Fedora and suse default to btrfs now, it should hence be good enough for us too. This enables a bunch of really nice things for us, most importanly we can resize home directories freely (i.e. both grow *and* shrink) while online. It also allows us to add nice subvolume based home directory snapshotting later on. Also, whenever we mention the three supported types, alaways mention them in alphabetical order, which is also our new order of preference.
Diffstat (limited to 'shell-completion')
-rw-r--r--shell-completion/bash/homectl2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/homectl b/shell-completion/bash/homectl
index c2a9e610d1..1a1d522966 100644
--- a/shell-completion/bash/homectl
+++ b/shell-completion/bash/homectl
@@ -139,7 +139,7 @@ _homectl() {
comps=$(cat /etc/shells)
;;
--fs-type)
- comps='ext4 xfs btrsf'
+ comps='btrfs ext4 xfs'
;;
--cifs-user-name)
comps=$(compgen -A user -- "$cur" )