Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Guilherme Filippo
ISPConfig 3
Commits
42b3854f
Commit
42b3854f
authored
Mar 04, 2009
by
tbrehm
Browse files
Fixed jailkit scripts on fedora.
parent
130cd42c
Changes
2
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/shelluser_jailkit_plugin.inc.php
View file @
42b3854f
...
...
@@ -188,7 +188,7 @@ class shelluser_jailkit_plugin {
$tpl
->
setVar
(
'home_dir'
,
$this
->
_get_home_dir
(
""
));
$bashrc
=
escapeshellcmd
(
$this
->
data
[
'new'
][
'dir'
])
.
'/etc/bash.bashrc'
;
exec
(
'rm '
.
$bashrc
);
if
(
@
is_file
(
$bashrc
))
exec
(
'rm '
.
$bashrc
);
file_put_contents
(
$bashrc
,
$tpl
->
grab
());
unset
(
$tpl
);
...
...
@@ -201,7 +201,7 @@ class shelluser_jailkit_plugin {
$tpl
->
setVar
(
'domain'
,
$web
[
'domain'
]);
$motd
=
escapeshellcmd
(
$this
->
data
[
'new'
][
'dir'
])
.
'/var/run/motd'
;
exec
(
'rm '
.
$motd
);
if
(
@
is_file
(
$motd
))
exec
(
'rm '
.
$motd
);
file_put_contents
(
$motd
,
$tpl
->
grab
());
...
...
server/scripts/create_jailkit_chroot.sh
View file @
42b3854f
...
...
@@ -24,7 +24,10 @@ chown root:root $CHROOT_HOMEDIR
jk_init
-f
-k
-j
$CHROOT_HOMEDIR
$CHROOT_APP_SECTIONS
## Create the temp directory
mkdir
$CHROOT_HOMEDIR
/tmp
if
[
!
-d
"
$CHROOT_HOMEDIR
/tmp"
]
then
mkdir
$CHROOT_HOMEDIR
/tmp
fi
chmod
a+rwx
$CHROOT_HOMEDIR
/tmp
...
...
@@ -32,4 +35,9 @@ chmod a+rwx $CHROOT_HOMEDIR/tmp
mkdir
$CHROOT_HOMEDIR
/var
mkdir
$CHROOT_HOMEDIR
/var/run
mkdir
$CHROOT_HOMEDIR
/var/run/mysqld
ln
/var/run/mysqld/mysqld.sock
$CHROOT_HOMEDIR
/var/run/mysqld/mysqld.sock
# ln /var/run/mysqld/mysqld.sock $CHROOT_HOMEDIR/var/run/mysqld/mysqld.sock
if
[
-e
"/var/run/mysqld/mysqld.sock"
]
then
ln
/var/run/mysqld/mysqld.sock
$CHROOT_HOMEDIR
/var/run/mysqld/mysqld.sock
fi
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