Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
021aece4
Commit
021aece4
authored
May 09, 2014
by
Till Brehm
Browse files
Add missing symlink for patch tool.
parent
ad90585f
Changes
4
Hide whitespace changes
Inline
Side-by-side
install/dist/lib/fedora.lib.php
View file @
021aece4
...
...
@@ -1203,6 +1203,9 @@ class installer_dist extends installer_base {
//* Remove Domain module as its functions are available in the client module now
if
(
@
is_dir
(
'/usr/local/ispconfig/interface/web/domain'
))
exec
(
'rm -rf /usr/local/ispconfig/interface/web/domain'
);
// Add symlink for patch tool
if
(
!
is_link
(
'/usr/local/bin/ispconfig_patch'
))
exec
(
'ln -s /usr/local/ispconfig/server/scripts/ispconfig_patch /usr/local/bin/ispconfig_patch'
);
}
...
...
install/dist/lib/gentoo.lib.php
View file @
021aece4
...
...
@@ -1079,6 +1079,9 @@ class installer extends installer_base
//* Remove Domain module as its functions are available in the client module now
if
(
@
is_dir
(
'/usr/local/ispconfig/interface/web/domain'
))
exec
(
'rm -rf /usr/local/ispconfig/interface/web/domain'
);
// Add symlink for patch tool
if
(
!
is_link
(
'/usr/local/bin/ispconfig_patch'
))
exec
(
'ln -s /usr/local/ispconfig/server/scripts/ispconfig_patch /usr/local/bin/ispconfig_patch'
);
}
...
...
install/dist/lib/opensuse.lib.php
View file @
021aece4
...
...
@@ -1273,6 +1273,9 @@ class installer_dist extends installer_base {
//* Remove Domain module as its functions are available in the client module now
if
(
@
is_dir
(
'/usr/local/ispconfig/interface/web/domain'
))
exec
(
'rm -rf /usr/local/ispconfig/interface/web/domain'
);
// Add symlink for patch tool
if
(
!
is_link
(
'/usr/local/bin/ispconfig_patch'
))
exec
(
'ln -s /usr/local/ispconfig/server/scripts/ispconfig_patch /usr/local/bin/ispconfig_patch'
);
}
...
...
install/lib/installer_base.lib.php
View file @
021aece4
...
...
@@ -2112,7 +2112,8 @@ class installer_base {
replaceLine
(
'/etc/default/rkhunter'
,
'CRON_DB_UPDATE="yes"'
,
'CRON_DB_UPDATE="no"'
,
1
,
0
);
}
// Add symlink for patch tool
if
(
!
is_link
(
'/usr/local/bin/ispconfig_patch'
))
exec
(
'ln -s /usr/local/ispconfig/server/scripts/ispconfig_patch /usr/local/bin/ispconfig_patch'
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment