ILIAS-7-Install-Tutorial for Ubuntu 20.04
Use rightsetting Script
Check rights by script
Its a good idea to check the rightsetting by a script at night:
nano /opt/scripts/checkrights
- Put these lines in:
1 | #!/bin/bash |
chmod +x /opt/scripts/checkrights
- Add a cronjob that will run early in the morning:
nano /etc/crontab
1 | #Check rights |
Special script to protect ini files
Its a good idea to chek rightsettings of the ini files every 3 minutes:
touch /opt/scripts/protectinis
chmod +x /opt/scripts/protectinis
nano /opt/scripts/protectinis
- Put these lines in:
1 | #!/bin/bash |
- Now we set a cronjob:
- nano /etc/crontab
- Add this line:
1 | #Protect ini-files |