Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-stable
Commits
a0eda385
Commit
a0eda385
authored
Mar 28, 2003
by
Leigh B. Stoller
Browse files
Hmm, top level /group/$pid was being created 777 instead of 770.
I've fixed all existing group directories.
parent
58ce4cc9
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/mkproj.in
View file @
a0eda385
...
...
@@ -194,7 +194,7 @@ if (! -e "$GRPROOT/$pid") {
if
(
!
mkdir
("
$GRPROOT
/
$pid
",
0770
))
{
fatal
("
Could not make directory
$GRPROOT
/
$pid
: $!
");
}
if
(
!
chmod
(
077
7
,
"
$GRPROOT
/
$pid
"))
{
if
(
!
chmod
(
077
0
,
"
$GRPROOT
/
$pid
"))
{
fatal
("
Could not chmod directory
$GRPROOT
/
$pid
: $!
");
}
if
(
!
chown
(
$uid
,
$gid
,
"
$GRPROOT
/
$pid
"))
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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