simplesamlphp / simplesamlphp

SimpleSAMLphp is an application written in native PHP that deals with authentication.
https://simplesamlphp.org
GNU Lesser General Public License v2.1
1.07k stars 680 forks source link

Installing SimpleSAMLphp from the repository - Is documentation outdated? #1732

Closed steinmb closed 1 year ago

steinmb commented 1 year ago

Describe the bug Following https://simplesamlphp.org/docs/devel/simplesamlphp-install-repo.html and cloning out HEAD on the master branch. Config and metadata templates are missing/moved.

To Reproduce Steps to reproduce the behavior:

git clone git@github.com:simplesamlphp/simplesamlphp.git simplesamlphp
cd simplesamlphp

Follow install instructions

cp -r config-templates/* config/
zsh: no matches found: config-templates/*

cp -r metadata-templates/* metadata/
zsh: no matches found: metadata-templates/*

Expected behavior A clear and concise description of what you expected to happen.

Files should be there.

Screenshots or logs NA

Additional context NA

tvdijen commented 1 year ago

Thanks for reporting! Yes, the docs are outdated here. We removed the xx-templates dirs and put the configuration templates as .dist files in the config and metadata dirs.

steinmb commented 1 year ago

Wow, hank you for your swift reply! Perhaps the cron module also should follow this pattern? Warning, new to this project and are just poking around in the code and doc to get to know it. Created - https://github.com/simplesamlphp/simplesamlphp/pull/1733