commandline buckup
-
Hi,
how to properly backup mycontroller setup from commandline and then restore ? actually the restore step is most important for me because backup can be set to auto. What I want is to be able to write a bash script which restore whole mycontroller setup. -
have you tried to copy the conf directory to a different name?
cp -r ./conf ./conf.bck
if mycontroller is not running, for a restore:
cp -r ./conf.bck ./conf
please try on a test system first...
-
this seems to work, thanks