summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2015-01-30 07:34:26 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2015-02-04 09:50:01 +0100
commitcc1e8aed3059c62d56bccfc07f3041901cec8ebb (patch)
tree1916ffdf90e6e0e7e227b4410253327ae892b9b8 /INSTALL
parenta28d4f8e3eeefc3c6773e903f956f163380631ff (diff)
downloadaurweb-cc1e8aed3059c62d56bccfc07f3041901cec8ebb.tar.xz
Rename the AUR software to aurweb
Rename the project to help differentiate between the software providing access to the Arch User Repository and the collection of source packages itself. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL20
1 files changed, 10 insertions, 10 deletions
diff --git a/INSTALL b/INSTALL
index 7b90ffd..e6ef6ab 100644
--- a/INSTALL
+++ b/INSTALL
@@ -4,7 +4,7 @@ Setup on Arch Linux
1) Clone the AUR project:
$ cd /srv/http/
- $ git clone git://projects.archlinux.org/aur.git
+ $ git clone git://projects.archlinux.org/aurweb.git
2) Setup a web server with PHP and MySQL. Configure the web server to redirect
all URLs to /index.php/foo/bar/. The following block can be used with nginx:
@@ -17,15 +17,15 @@ Setup on Arch Linux
4) Create a new MySQL database and a user and import the AUR SQL schema:
- $ mysql -uaur -p AUR </srv/http/aur/schema/aur-schema.sql
+ $ mysql -uaur -p AUR </srv/http/aurweb/schema/aur-schema.sql
5) Generate templates for new Git repositories:
- $ /srv/http/aur/scripts/git-integration/gen-templates.py
+ $ /srv/http/aurweb/scripts/git-integration/gen-templates.py
-6) Clone the OpenSSH project, apply the AUR sshd patch and run `make`:
+6) Clone the OpenSSH project, apply the aurweb sshd patch and run `make`:
- $ cd /srv/http/aur/
+ $ cd /srv/http/aurweb/
$ git clone git://anongit.mindrot.org/openssh.git
$ cd openssh
$ git checkout V_6_7_P1
@@ -36,7 +36,7 @@ Setup on Arch Linux
7) Create and edit the sshd configuration:
- $ cd /srv/http/aur/
+ $ cd /srv/http/aurweb/
$ umask 077
$ mkdir .ssh/
$ ssh-keygen -f .ssh/ssh_host_rsa_key -N '' -t rsa
@@ -44,12 +44,12 @@ Setup on Arch Linux
8) Create a new user and change ownership of the .ssh directory:
- # useradd -U -d /srv/http/aur -c 'AUR user' aur
- # chown aur:aur /srv/http/aur/.ssh/
+ # useradd -U -d /srv/http/aurweb -c 'AUR user' aur
+ # chown aur:aur /srv/http/aurweb/.ssh/
9) Add, enable and start systemd unit files for the new sshd:
- # cp /srv/http/aur/conf/aur-sshd.socket /etc/systemd/system/
- # cp /srv/http/aur/conf/aur-sshd@.service /etc/systemd/system/
+ # cp /srv/http/aurweb/conf/aur-sshd.socket /etc/systemd/system/
+ # cp /srv/http/aurweb/conf/aur-sshd@.service /etc/systemd/system/
# systemctl enable aur-sshd.socket
# systemctl start aur-sshd.socket