diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2024-10-16 00:07:55 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2024-10-16 00:07:55 -0400 |
commit | 93d82d9e76636ca4d33db6c8799754660a440235 (patch) | |
tree | b6231e117e824c14c1156a00a972a5d65ef24953 /scripts/hostclass | |
parent | 145668c3dd67c5271eddcb62d1e7843487d768a7 (diff) | |
download | infrastructure-93d82d9e76636ca4d33db6c8799754660a440235.tar.gz |
cleanup
Diffstat (limited to 'scripts/hostclass')
-rw-r--r-- | scripts/hostclass/nfs_server | 2 | ||||
-rw-r--r-- | scripts/hostclass/znc_server | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/scripts/hostclass/nfs_server b/scripts/hostclass/nfs_server index ce47cfe..ec06bfe 100644 --- a/scripts/hostclass/nfs_server +++ b/scripts/hostclass/nfs_server @@ -43,5 +43,5 @@ sysrc -v gssd_env="KRB5_KTNAME=${keytab_dir}/host.keytab" install_template -m 0644 /etc/exports for service in gssd nfsuserd mountd nfsd; do - service "$service" restart + service "$service" status || service "$service" start done diff --git a/scripts/hostclass/znc_server b/scripts/hostclass/znc_server index fd6b715..58f1d8a 100644 --- a/scripts/hostclass/znc_server +++ b/scripts/hostclass/znc_server @@ -38,11 +38,9 @@ install_directory -o "$znc_user" -g "$znc_user" -m 0700 \ install_template -o "$znc_user" -g "$znc_user" -m 0600 "${znc_home}/moddata/cyrusauth/.registry" # Copy saslauthd configuration. -# TODO: use ldap module for saslauthd. install_template -m 0644 \ /usr/local/lib/sasl2/znc.conf \ - /usr/local/etc/saslauthd.conf \ - /etc/pam.d/znc + /usr/local/etc/saslauthd.conf # Allow znc to read the saslauthd socket. install_directory -m 0750 -o "$saslauthd_user" -g "$znc_user" "$saslauthd_runtime_dir" |