
Replaced pam_mount with systemd automount to manage the mounting of the default school Samba share. This change improves system integration and simplifies the mount process by leveraging systemd's capabilities.
11 lines
221 B
Django/Jinja
11 lines
221 B
Django/Jinja
[Unit]
|
|
Description=K5Start Kerberos Ticket Renewal
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/k5start -f /etc/krb5.keytab -K 1 -u {{ ansible_hostname | upper }}$
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|