forked from michaeldexter/vmrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-vmrc.sh
executable file
·70 lines (61 loc) · 2.26 KB
/
install-vmrc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh
#
################################################################ LICENSE
#
# Copyright (c) 2012-2014 Michael Dexter <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
############################################################ INFORMATION
#
# Title: virtual machine rc script installation script
# Version: v.0.7
#
# Verbose script to install the vmrc rc script and supporting files
#
################################################################## USAGE
#
# As root: sh install-vmrc.sh
#
########################################################################
# Keep in sync with /usr/local/vm.conf
host_vmroot="/usr/local/vmrc/" # Directory for all vmrc components
host_vmdir="/usr/local/vmrc/vm/" # VM configurations, images and mount points
host_distdir="/usr/local/vmrc/distributions/" # OS Distributions
host_templates="/usr/local/vmrc/templates/" # VM Templates
echo
echo Running mkdir -p /usr/local/etc/rc.d/
mkdir -p /usr/local/etc/rc.d/
echo
echo Running cp vm /usr/local/etc/rc.d/
cp vm /usr/local/etc/rc.d/
echo # May as well as combine these with a numeric mask
echo Running chmod a+x /usr/local/etc/rc.d/vm
chmod a+x /usr/local/etc/rc.d/vm
echo
echo Running chmod a-w /usr/local/etc/rc.d/vm
chmod a-w /usr/local/etc/rc.d/vm
echo
echo Running cp vm.conf /usr/local/etc/
cp vm.conf /usr/local/etc/
echo
echo Creating /usr/local/vmrc directories
mkdir -p $host_vmdir
mkdir -p $host_distdir
mkdir -p $host_templates
echo
echo Running cp -p templates/* $host_templates
cp -p templates/* $host_templates
echo
echo At a minimum, verify the network device in /usr/local/etc/vm.conf
echo