mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
The location of the Git interface wrapper scripts was changed by commit
d4fe77a
(Reorganize Git interface scripts, 2016-10-08). Add a note to
the upgrade instructions to remind users to update their configuration
files.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
17 lines
544 B
Text
17 lines
544 B
Text
1. Resize the URL column of the Packages table:
|
|
|
|
----
|
|
ALTER TABLE Packages MODIFY URL VARCHAR(8000) NULL DEFAULT NULL;
|
|
----
|
|
|
|
2. Resize the Source column of the PackageSources table:
|
|
|
|
----
|
|
ALTER TABLE PackageSources
|
|
MODIFY Source VARCHAR(8000) NOT NULL DEFAULT "/dev/null";
|
|
----
|
|
|
|
3. The location of the Git interface scripts was changed. Make sure you update
|
|
your aurweb configuration, as well as the SSH daemon and AUR Git repository
|
|
configurations to point to the new wrapper scripts which are located in
|
|
/usr/local/bin/ by default.
|