-
Notifications
You must be signed in to change notification settings - Fork 1
Known Issues
lhmerino edited this page Oct 12, 2019
·
4 revisions
Steps to replicate:
- Container is set to start on boot
- Container is running
- Container is mounted
- Proxmox Host is restarted
- Proxmox (
pct list
) states that the container is mounted; however, no directories shown in the mounted path.
Steps to resolve:
- Unmount and mount the container
Situation: A command returning an error in /etc/rc.local will stop execution of the script and none of the commands after the failed command will execute. This is normal behavior; however, it may be the case that one may want other commands to be run regardless of the result of another command.
Steps to resolve: Append || true
after each command line when possible. For example:
-
pct start 101
becomespct start 101 || true
-
echo hello | wc
becomes(echo hello | wc) || true