Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
7da57ad4
Commit
7da57ad4
authored
Jan 28, 2005
by
Timothy Stack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Binmode some file handles so RH9 stops complaining
parent
b2cb72f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
os/install-rpm
os/install-rpm
+5
-1
No files found.
os/install-rpm
View file @
7da57ad4
#!/usr/bin/perl -wT
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-200
4
University of Utah and the Flux Group.
# Copyright (c) 2000-200
5
University of Utah and the Flux Group.
# All rights reserved.
#
use
English
;
...
...
@@ -279,12 +279,16 @@ sub GetRPMFile($$$$$$$)
open
(
TMCC
,
"
<
$rpm
")
or
fatal
("
Could not open rpm on server!
");
binmode
TMCC
;
#
# Open the target file and start dumping the data in.
#
open
(
JFILE
,
"
>
$copyfile
")
or
fatal
("
Could not open local file
$copyfile
: $!
");
binmode
JFILE
;
#
# Deal with NFS read failures
#
...
...
Write
Preview
Markdown
is supported
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