if ! [[ -d /usr/share/empty ]]; then
  mkdir /usr/share/empty
fi

if ! [[ -d /home/ftp ]]; then
  mkdir /home/ftp
  chown root.root /home/ftp
  chmod og-w /home/ftp
else
  chown root.root /home/ftp
  chmod og-w /home/ftp
fi    
