20 lines
512 B
Text
20 lines
512 B
Text
case "${ACTION}" in
|
|
post)
|
|
# create runtime required dirs.
|
|
bin/systemd-tmpfiles --create usr/lib/tmpfiles.d/samba.conf
|
|
cat << _EOF
|
|
==========================================================================
|
|
|
|
To start the Samba SMB/CIFS server:
|
|
# systemctl start smbd.service
|
|
|
|
To start the Samba NETBIOS name server:
|
|
# systemctl start nmbd.service
|
|
|
|
To start the Samba Winbind daemon:
|
|
# systemctl start winbindd.service
|
|
|
|
==========================================================================
|
|
_EOF
|
|
;;
|
|
esac
|