Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3752287
D1980.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D1980.diff
View Options
diff --git a/map.jinja b/map.jinja
--- a/map.jinja
+++ b/map.jinja
@@ -2,6 +2,7 @@
'Debian': {
'etc': '/etc',
'bin': '/usr/bin',
+ 'home': '/home',
'include': '/usr/include',
'lib': '/usr/lib',
'man': '/usr/share/man',
@@ -11,6 +12,7 @@
'FreeBSD' : {
'etc': '/usr/local/etc',
'bin': '/usr/local/bin',
+ 'home': '/usr/home',
'include': '/usr/local/include',
'lib': '/usr/local/lib',
'man': '/usr/local/man',
diff --git a/roles/core/users/init.sls b/roles/core/users/init.sls
--- a/roles/core/users/init.sls
+++ b/roles/core/users/init.sls
@@ -13,13 +13,18 @@
# -------------------------------------------------------------
#
# :: Disabled accounts
+# :: ZFS (before user account creation)
# :: Active accounts
+# :: ZFS (after user account creation)
# :: Groups
# :: SSH keys
#
# -------------------------------------------------------------
-{% from "map.jinja" import shells with context %}
+{% from "map.jinja" import dirs, shells with context %}
+
+{% set users = salt['forest.get_users']() %}
+{% set zfs_tank = salt['node.get']("zfs:pool") %}
# -------------------------------------------------------------
# Disabled accounts
@@ -31,10 +36,52 @@
{% endfor %}
# -------------------------------------------------------------
+# ZFS datasets
+#
+# Where ZFS is available, home directories are created as separate
+# datasets. That has several benefits, like allowing users to create
+# snapshots or manage backups.
+# -------------------------------------------------------------
+
+{% if zfs_tank %}
+zfs_home_permissions_sets:
+ cmd.run:
+ - name: |
+ zfs allow -s @local allow,clone,create,diff,hold,mount,promote,receive,release,rollback,snapshot,send {{ zfs_tank }}{{ dirs.home }}
+ zfs allow -s @descendent allow,clone,create,diff,destroy,hold,mount,promote,receive,release,rename,rollback,snapshot,send {{ zfs_tank }}{{ dirs.home }}
+ touch {{ dirs.home }}/.zfs-permissions-set
+ - creates: {{ dirs.home }}/.zfs-permissions-set
+
+{% for username in users %}
+{% set home_directory = zfs_tank + dirs['home'] + '/' + username %}
+
+{{ home_directory }}:
+ zfs.filesystem_present
+
+zfs_permissions_home_local_{{ username }}:
+ cmd.run:
+ - name: zfs allow -lu {{ username }} @local {{ home_directory }}
+ - require:
+ - user: {{ username }}
+ - onchanges:
+ - zfs: {{ home_directory }}
+
+zfs_permissions_home_descendant_{{ username }}:
+ cmd.run:
+ - name: zfs allow -du {{ username }} @descendent {{ home_directory }}
+ - require:
+ - user: {{ username }}
+ - onchanges:
+ - zfs: {{ home_directory }}
+
+{% endfor %}
+{% endif %}
+
+# -------------------------------------------------------------
# Active accounts
# -------------------------------------------------------------
-{% for username, user in salt['forest.get_users']().items() %}
+{% for username, user in users.items() %}
{{ username }}:
user.present:
- fullname: {{ user['fullname'] }}
@@ -58,7 +105,7 @@
# SSH keys
# -------------------------------------------------------------
-{% for username, user in salt['forest.get_users']().items() %}
+{% for username, user in users.items() %}
/home/{{ username }}/.ssh:
file.directory:
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 18, 18:04 (19 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2250896
Default Alt Text
D1980.diff (3 KB)
Attached To
Mode
D1980: Create home directories as ZFS filesystems
Attached
Detach File
Event Timeline
Log In to Comment