# fss-0002
# Ensure all appropriate directories have their sticky bits set
# TODO: there are a lot more entries that need to be added here!

main:
  if [[ -d /home/share ]] ; then find /home/share -type d -exec chmod g+s '{}' ';' ; fi
  if [[ -d /home/music ]] ; then find /home/music -type d -exec chmod g+s '{}' ';' ; fi
  if [[ -d /lib/X11 ]] ; then find /lib/X11 -type d -exec chmod g+s '{}' ';' ; fi
  if [[ -d /etc/X11 ]] ; then find /etc/X11 -type d -exec chmod g+s '{}' ';' ; fi
  if [[ -d /share/fonts ]] ; then find /share/fonts -type d -exec chmod g+s '{}' ';' ; fi
