#!/bin/bash #Download SVN yum -y install subversion #Alibaba Cloud oss data wget -P /root https://babyrita.oss-cn-beijing.aliyuncs.com/lnmp/quyeweb/ziliao.zip #Unzip the data file unzip ziliao.zip #Create a new svndata directory mkdir /home/svndata #The SVN server listens to the default port 3690 svnserve -d -r /home/svndata #Create SVN repository svnadmin create /home/svndata/www #Copy the data to the corresponding location\cp /root/ziliao/passwd.txt /home/svndata/www/conf/passwd \cp /root/ziliao/svnserve.txt /home/svndata/www/conf/svnserve.conf \cp /root/ziliao/post-commit.txt /home/svndata/www/hooks/post-commit #Hook file executable chmod +x /home/svndata/www/hooks/post-commit cd /home/svndata/www/ #Check out SVN to local and website root directory ---Automation --No need to enter password SVN co svn://127.0.0.1/www --username svn1113 --password svn123 --no-auth-cache svn co svn://127.0.0.1/www /home/wwwroot/www --username svn1113 --password svn123 --no-auth-cache #Create users and user groups groupadd www useradd -g www www #Set the permissions of the website directory chown -R www:www /home/wwwroot/www Knowledge point supplement: Let's take a look at the Linux shell script SVN automatically update the project and package, publish, and backup Here we prepare a configuration file to save the SVN address, destination path, username and password. Configuration file name: toolConfig.properties #svn address svnAddress=https://192.168.1.253/[yourPath] #Local path (destination address) localDir=E:\shelltest #svn username userName=jack #svn password password=123456 Corresponding shell script #!/bin/bash source ./toolConfig.properties svn_ip=${svnAddress} local_path=${localDir} u_name=${userName} p_wd=${password} svn co ${svn_ip} ${local_path} --username ${u_name} --password ${p_wd} Summarize The above is the details of how to install shell scripts in Svn with one click under linxu. For more information about installing shell scripts in Linux with one click, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Implementation of React page turner (including front and back ends)
>>: Vue.js implements simple timer function
Table of contents 1. Demand 2. Implementation 3. ...
Distinguish the differences between the filter, f...
Table of contents 1. Joint index description 2. C...
background Use idea with docker to realize the wh...
Table of contents Overview Promise Race Method Re...
The image can be easily pushed directly to the Do...
This article uses examples to illustrate the prin...
How can you forget lazy loading of routes that al...
Preface How to write efficient SQL statements is ...
Preface Sometimes I feel that the native UI of We...
Phenomenon When using Apache Spark 2.x, you may e...
Simple example of HTML checkbox and radio style b...
This article shares a common example of viewing p...
If you want to solve the slow problem once and fo...
Table of contents 1.0 Introduction 2.0 Docker Ins...