Page 2 of 2

Re: Error installing fresh XI and NA

Posted: Fri Mar 15, 2019 3:21 pm
by BanditBBS
I think this line in the script is causing my issue:

Code: Select all

cp -r backend "$backenddir"
I think its copying the "backend" folder to $backenddir instead of backend's contents....make sense?

Re: Error installing fresh XI and NA

Posted: Fri Mar 15, 2019 4:27 pm
by BanditBBS
BanditBBS wrote:I think this line in the script is causing my issue:

Code: Select all

cp -r backend "$backenddir"
I think its copying the "backend" folder to $backenddir instead of backend's contents....make sense?
I was right, changed that line to :

Code: Select all

cp -r backend/* "$backenddir"
and everything completed fine!

Re: Error installing fresh XI and NA

Posted: Mon Mar 18, 2019 12:19 pm
by tgriep
Glad that it is installed now.

Yes, that makes sense, it is trying to create the folder and copying the data to it but since the folder existed, it could not create it.