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
28ab9f2e
Commit
28ab9f2e
authored
May 08, 2016
by
Mike Hibler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure make "xen-install" target does not fail.
parent
c960e788
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
clientside/tmcc/linux/GNUmakefile.in
clientside/tmcc/linux/GNUmakefile.in
+13
-3
No files found.
clientside/tmcc/linux/GNUmakefile.in
View file @
28ab9f2e
...
...
@@ -159,6 +159,11 @@ dir-install:
-rm -rf $(DESTDIR)/usr/local/etc/testbed
ln -s emulab $(DESTDIR)/usr/local/etc/testbed
systemd-dir-install: dir-install
$(INSTALL) -m 755 -o root -g $(DIRGROUP) -d $(SYSETCDIR)/systemd
$(INSTALL) -m 755 -o root -g $(DIRGROUP) -d $(SYSETCDIR)/systemd/system
$(INSTALL) -m 755 -o root -g $(DIRGROUP) -d $(SYSETCDIR)/systemd/system/multi-user.target.wants
common-install: dir-install
(cd ../common; $(MAKE) DESTDIR=$(DESTDIR) local-install)
...
...
@@ -227,7 +232,7 @@ sysetc-remove: sysetc-remove-$(INITTYPE)
sysetc-remove-sysv:
-rm -f $(RCDIR)/*/S95anacron $(RCDIR)/*/K05anacron
sysetc-install-systemd:
sysetc-install-systemd:
systemd-dir-install
touch $(SYSETCDIR)/emulab/uses-systemd
$(INSTALL) -m 755 -o root -g $(DIRGROUP) -d $(BINDIR)/initscripts
# Install our "helper" scripts
...
...
@@ -393,14 +398,19 @@ xen-install: dir-install xen-udev-install xen-upstart-install
$(INSTALL) -m 755 $(SRCDIR)/xen/gc-xen-images $(BINDIR)/
$(INSTALL) -m 755 -o root -g $(DIRGROUP) -d $(BINDIR)/grub
$(INSTALL) -m 755 $(SRCDIR)/xen/pygrub $(BINDIR)/
@if [ ! -e "/usr/lib/xen-default" -a -d "/usr/lib/xen-4.5" ]; then \
ln -sf xen-4.5 /usr/lib/xen-default; \
fi
@if [ ! -e "/usr/lib/xen-default" -a -d "/usr/lib/xen-4.4" ]; then \
ln -sf xen-4.4 /usr/lib/xen-default; \
fi
$(INSTALL) -m 755 $(SRCDIR)/xen/GrubConf.py \
/usr/lib/xen-default/lib/python/grub/
$(INSTALL) -m 755 $(SRCDIR)/xen/topd $(BINDIR)/
$(INSTALL) -m 755 $(SRCDIR)/xen/topd-init $(SYSETCDIR)/init.d/topd
/usr/bin/update-rc.d topd defaults
@if [ -x "/usr/bin/update-rc.d" -a -d "$(SYSETCDIR)/init.d" ]; then \
$(INSTALL) -m 755 $(SRCDIR)/xen/topd-init $(SYSETCDIR)/init.d/topd; \
/usr/bin/update-rc.d topd defaults; \
fi
genirack-install:
$(INSTALL) -m 755 $(SRCDIR)/xen/restorevm.pl $(BINDIR)/restorevm.pl
...
...
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