Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alfons L.
ISPConfig 3
Commits
ba66cdbf
Commit
ba66cdbf
authored
Oct 29, 2007
by
tbrehm
Browse files
Options
Downloads
Patches
Plain Diff
- Fixed a big with stdin input in the installer
- enhanced the documentation
parent
03ade50f
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
INSTALL_DEBIAN.txt
+13
-1
13 additions, 1 deletion
INSTALL_DEBIAN.txt
INSTALL_UBUNTU.txt
+3
-1
3 additions, 1 deletion
INSTALL_UBUNTU.txt
install/lib/install.lib.php
+1
-3
1 addition, 3 deletions
install/lib/install.lib.php
with
17 additions
and
5 deletions
INSTALL_DEBIAN.txt
+
13
−
1
View file @
ba66cdbf
...
...
@@ -18,7 +18,7 @@ Mail name? <-- server1.mydomain.tld
2) Install Amavisd-new, Spamassassin and Clamav (1 line!):
apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip
apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip
libnet-dns-perl
3) Install apache, PHP5 and phpmyadmin (1 line!):
...
...
@@ -94,3 +94,15 @@ user: admin
password: admin
In case you get a permission denied error from apache, please restart the apache webserver process.
----------------------------------------------------------------------------------------------------------
Hints:
debian 4.0 under openvz:
VPSID=122
for CAP in CHOWN DAC_READ_SEARCH SETGID SETUID NET_BIND_SERVICE NET_ADMIN SYS_CHROOT SYS_NICE CHOWN DAC_READ_SEARCH SETGID SETUID NET_BIND_SERVICE NET_ADMIN SYS_CHROOT SYS_NICE
do
vzctl set $VPSID --capability ${CAP}:on --save
done
This diff is collapsed.
Click to expand it.
INSTALL_UBUNTU.txt
+
3
−
1
View file @
ba66cdbf
...
...
@@ -30,7 +30,7 @@ Mail name? <-- server1.mydomain.tld
2) Install Amavisd-new, Spamassassin and Clamav (1 line!):
apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip
apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip
libnet-dns-perl
3) Install apache, PHP5 and phpmyadmin (1 line!):
...
...
@@ -53,6 +53,8 @@ Then we install pureftpd and quota.
apt-get install pure-ftpd-common pure-ftpd-mysql quota quotatool
echo 'yes' > /etc/pure-ftpd/conf/DontResolve
5) Install mydns
apt-get install mydns-mysql
...
...
This diff is collapsed.
Click to expand it.
install/lib/install.lib.php
+
1
−
3
View file @
ba66cdbf
...
...
@@ -83,9 +83,7 @@ function get_distname() {
}
function
sread
()
{
$f
=
fopen
(
'/dev/stdin'
,
'r'
);
$input
=
fgets
(
$f
,
255
);
fclose
(
$f
);
$input
=
fgets
(
STDIN
);
return
rtrim
(
$input
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment