Skip to content

Commit 39a3c38

Browse files
committed
ezp_cron.txt → ibexa_cron.txt
1 parent b7892a8 commit 39a3c38

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/content_management/url_management/url_management.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@ To enable automatic URL validation, set up cron to run the `ibexa:check-urls` co
4040
For example, to check links every week, add the following script:
4141

4242
```
43-
echo '0 0 * * 0 cd [path-to-ibexa]; php bin/console ibexa:check-urls --quiet --env=prod' > ezp_cron.txt
43+
echo '0 0 * * 0 cd [path-to-ibexa]; php bin/console ibexa:check-urls --quiet --env=prod' > ibexa_cron.txt
4444
```
4545

4646
Next, append the new cron to user's crontab without destroying existing crons.
4747
Assuming that the web server user data is www-data:
4848

4949
```
50-
crontab -u www-data -l|cat - ezp_cron.txt | crontab -u www-data -
50+
crontab -u www-data -l | cat - ibexa_cron.txt | crontab -u www-data -
5151
```
5252

5353
Finally, remove the temporary file:
5454

5555
```
56-
rm ezp_cron.txt
56+
rm ibexa_cron.txt
5757
```
5858

5959
### Configuration

docs/getting_started/install_ibexa_dxp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -402,20 +402,20 @@ To enable delayed publishing of Content using the Date-based Publisher, you must
402402

403403
For example, to check for publishing every minute, add the following script:
404404

405-
`echo '* * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ezp_cron.txt`
405+
`echo '* * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ibexa_cron.txt`
406406

407407
For 5-minute intervals:
408408

409-
`echo '*/5 * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ezp_cron.txt`
409+
`echo '*/5 * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ibexa_cron.txt`
410410

411411
Next, append the new cron to user's crontab without destroying existing crons.
412412
Assuming the web server user data is `www-data`:
413413

414-
`crontab -u www-data -l|cat - ezp_cron.txt | crontab -u www-data -`
414+
`crontab -u www-data -l | cat - ibexa_cron.txt | crontab -u www-data -`
415415

416416
Finally, remove the temporary file:
417417

418-
`rm ezp_cron.txt`
418+
`rm ibexa_cron.txt`
419419

420420
### Enable the Link manager
421421

0 commit comments

Comments
 (0)