Open-source AI data analyst platform extracted from internal repo. Includes data sync engine, Keboola adapter, Flask web portal, server deployment scripts, and configuration templates.
13 lines
343 B
Bash
Executable file
13 lines
343 B
Bash
Executable file
#!/bin/bash
|
|
# Read-only crontab wrapper for the calling user.
|
|
#
|
|
# Designed to be called via sudo -u <user> to read that user's crontab
|
|
# without www-data needing direct access.
|
|
#
|
|
# sudoers entry required:
|
|
# www-data ALL=(ALL) NOPASSWD: /usr/local/bin/user-crontab
|
|
#
|
|
# Usage:
|
|
# sudo -u someuser /usr/local/bin/user-crontab
|
|
|
|
exec crontab -l
|