


- SMARTSVN DIRECTORY ALREADY LOCKED INSTALL
- SMARTSVN DIRECTORY ALREADY LOCKED MANUAL
- SMARTSVN DIRECTORY ALREADY LOCKED CODE
Unable to start an interactive install session because of the following error: The DISPLAY environment variable should be set to :, where the is usually ''0.0". Make sure you have write permission on the /locks directory.Įither change the ownership of / to the current user, or include the current user in the group that owns the directory, provided that the group has write permission to the directory. Possibly, the current user is neither the owner nor the member of the group that owns the /locks directory. The current OUI (process) is not able to remove the "writer.lock" file, because the permission for the current user does not allow this. The global inventory (oraInventory) was locked by another process and the writer.lock file still exists even after the process exited. The file "writer.lock" is created under the /locks directory. Make sure you have enough permission to the ''locks'' directory to create/remove the writer.lock file.įor any write operations in the inventory, OUI acquires a lock. Please, any help with this would be greatly appreciated.You do not have sufficient permissions to access the inventory, unable to remove an existing inactive writer lock file in the inventory.
SMARTSVN DIRECTORY ALREADY LOCKED CODE
Where ac_post_commit.sh has the original code above.Īgain if I call it manually all the responses go to the file as necessary, but if I commit my work from SmartSVN the log file is actually empty.įYI - for some reason my post-commit.sh has a * at the end of it and is listed as post-commit.sh* when I ls the files in the hooks directory. home/modionzc/hooktest/ac_post_commit.sh &> svna.log The post-commit.sh file looks like this now. So now my post-commit script calls another file that has the commands above and outputs the command line returns to a file called svna.log. One suggestion was to to make a log file to see any errors that are caused when the script is called.
SMARTSVN DIRECTORY ALREADY LOCKED MANUAL
I have looked through the SVN manual and over the internet for a fix without much success. The only thing that I can think of is the actual SVN user doesn't have permission which are the users created in the conf file. The permissions to the file is set to 755. I am using absolute paths throughout the script. I did some research and found out that it could be permission issues or that I'm not using absolute paths. The changes are made through the repository and if I run the script manually I can see that the updates were actually made. Now for some reason it is not being called whenever I commit from my SmartSVN. It runs perfectly normally when I run it manually from the command line and updates the necessary files. Rm -rf /home/modionzc/public_html/devsuper/js/* Rm -rf /home/modionzc/public_html/devsuper/css/* Rm -rf /home/modionzc/public_html/devsuper/application/* Svn checkout file:///home/modionzc/svnrepos/artistcondevrep rm -rf /home/modionzc/tempworkspace/artistcondevspace/*Ĭd /home/modionzc/tempworkspace/artistcondevspace I do this so that I can have a testing environment for all changes that users make for my web application. Basically what the script does is SVN checkout to a temporary workspace, then upload the necessary files to my development subdomain on my server.

I created my post-commit shell script named post-commit.sh and put it in the hooks directory thinking this was all you had to do in order to get it working.

I am able to successfully connect to the SVN and make changes to it, but my post-commit script is not working after I commit from my SVN client. I am using SmartSVN as my client on my iMac. I have an SVN repo set up on my server and am having post-commit issues.
