Skip to content

Known Issues

lhmerino edited this page Oct 12, 2019 · 4 revisions

Known Issues

Proxmox

Container not mounting on boot although pct list states that the container is mounted

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

/etc/rc.local

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 becomes pct start 101 || true
  • echo hello | wc becomes (echo hello | wc) || true