-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wg3-cron and /defaults/update.sh missing #66
Comments
I am see a related issue I think. I now see an /app/update.sh but it id missing executable permissions:
So yeah that's the problem. update.sh was moved to /app and wg3-cron was removed and replaced by /etc/crontabs/abc. So main issue is the lack of execute permissions. See merge commit: |
Yes, Same Problem here :( |
same problem here. please add this to the wiki as it's obsolete as of right now |
You can work around this, by mounting this file in your docker-compose volumes and give execute permissions in the hosts filesystem with
EDIT: Correction chmod and volumes |
Thanks to @dariusaurius I have resolved this issue. Just wanted to ask, with no documentation or communication of this change, is this a temp change as a test, and is it expected to change again and therefore break again? |
Are you running it with the PUID and GUID environment variables?
That way it should match the hosts root permissions. That solved it for me. |
Hi, I have tried the suggested fixes above but for some reason my cronjob is now running automatically, here is my DC file,
I have tried with and without abc mapped, and PGID, PUID set as 0, and still same issue, I get the following error in the log,
If I run '/bin/bash /app/update.sh' manually in the console it works fine. Any help would be greatly appreciates. |
Remove the additional lines you've added that aren't in the readme, we fixed what was needed in the newest image. |
Same issue here:
I already installed the newest image. [EDIT]
This command, inside the container, works, but the output file I get (guide.xml) has root-permissions. The container does not work automatically with the set PUID and PGID. |
I have another problem with latest image:
|
This issue has been automatically marked as stale because it has not had recent activity. This might be due to missing feedback from OP. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue is locked due to inactivity |
Is there an existing issue for this?
Current Behavior
I've just tried setting this up as new on my Raspberry Pi 3.
I could got the non-docker version working, but this container version seems to be missing config/wg3-cron and /defaults/update.sh
Expected Behavior
Go into the container:
docker exec -it webgrabplus /bin/bash
There should be a cron file in config
There should be an update.sh in defaults
Steps To Reproduce
Here's my compose file:
version: '3.5'
services:
webgrabplus:
image: lscr.io/linuxserver/webgrabplus:latest
container_name: webgrabplus
hostname: webgrabplus
mac_address: 1:2:3:4:5:6
environment:
- PUID=1000
- PGID=1000
- TZ=GB
volumes:
- ./webgrabplus/config:/config
- ./webgrabplus/data:/data
restart: unless-stopped
There's no cron file in the linked config folder
Also, going in (as above) shows these files missing.
This also doesn't work:
docker exec webgrabplus /defaults/update.sh
The file isn't found
Environment
CPU architecture
arm64
Docker creation
Container logs
The text was updated successfully, but these errors were encountered: