The problem with moving VPS due to non-compliance with versions of

Solution to this problem.

Stop the vps.

vzctrl stop vps_id

Run the script.

#!/bin/bash
for i in `find /vz/private/vps_id/fs/root/ -noleaf -type l -print | perl -nle '-e || print'|grep ._vzlnk_.`
do
ln -sf `ls -ga $i|grep ._vzlnk_.|awk '{print $9}'|sed 's//////vz/template/'` $i
done

Start the vps.

vzctrl start vps_id

PS should check directories in the folder template, so as not to create dead links.

taken from :


Publicado

en

,

por

Etiquetas:

Comentarios

Una respuesta a «The problem with moving VPS due to non-compliance with versions of»

  1. […] a simple script stolen from here that should remove all these for you: #!/bin/bash VEID=101 # Replace with your container ID for i […]

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Este sitio usa Akismet para reducir el spam. Aprende cómo se procesan los datos de tus comentarios.