Skip to content

Commit d76c5e0

Browse files
committedJan 28, 2015
Initial commit.
Everything is done but the init-lxc function.
0 parents  commit d76c5e0

File tree

5 files changed

+166
-0
lines changed

5 files changed

+166
-0
lines changed
 

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Florian Margaine
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

‎README.txt

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# lxc-wrapper
2+
3+
My personal LXC wrapper.
4+
5+
## Motivation
6+
7+
I use LXC in a very opinionated way, and has some manual maintenance
8+
to do every time I do something with LXCs. So I created this tool to
9+
automate what I do with them.
10+
11+
## API
12+
13+
### `create`
14+
15+
```lisp
16+
(defun create (name &key base template)
17+
"Creates an LXC"
18+
```
19+
20+
Creates an LXC. If a base LXC is provided, then it makes a clone of
21+
it. If a template is provided, then it creates a new LXC based on this
22+
template.
23+
24+
### `start`
25+
26+
```lisp
27+
(defun start (name)
28+
"Starts an LXC"
29+
```
30+
31+
Starts an LXC. The argument can be a string or a symbol.
32+
33+
### `stop`
34+
35+
```lisp
36+
(defun stop (name)
37+
"Stops an LXC"
38+
```
39+
40+
Stops an LXC. The argument can be a string or a symbol.
41+
42+
### `ls`
43+
44+
```lisp
45+
(defun ls ()
46+
"Lists all the LXC"
47+
```
48+
49+
Returns the fancy output of the list of LXCs.
50+
51+
## License
52+
53+
MIT License.

‎lxc-wrapper.asd

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
;;;; lxc-wrapper.asd
2+
3+
(asdf:defsystem #:lxc-wrapper
4+
:description "My personal LXC wrapper"
5+
:author "Florian Margaine <florian@margaine.com>"
6+
:license "MIT License"
7+
:serial t
8+
:depends-on ("external-program")
9+
:components ((:file "package")
10+
(:file "lxc-wrapper")))

‎lxc-wrapper.lisp

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
;;;; lxc-wrapper.lisp
2+
3+
(in-package #:lxc-wrapper)
4+
5+
;;; "lxc-wrapper" goes here. Hacks and glory await!
6+
7+
(defmacro run (&body command)
8+
"Runs a command using sudo. LXC requires sudo.
9+
To avoid having an awkward API (i.e. passing a list),
10+
defining this as a macro."
11+
(let ((stream (gensym)))
12+
`(with-output-to-string (,stream)
13+
(external-program:run
14+
"sudo"
15+
(list ,@command)
16+
:output ,stream
17+
:environment '(("$PATH" . "/usr/bin")))
18+
,stream)))
19+
20+
(defun init-lxc (name)
21+
"Initializes the LXC after creating it. It means:
22+
- Giving it a static IP
23+
- Adding the static IP to the host's /etc/hosts
24+
- Making a symlink to the rootfs somewhere")
25+
26+
(defun create (name &key base template)
27+
"Creates an LXC"
28+
(if base
29+
(create-clone base name)
30+
(create-base name template)))
31+
32+
(defun create-clone (base name)
33+
"Creates a clone of another LXC"
34+
(let ((cli-base (adapt-arg base))
35+
(cli-name (adapt-arg name)))
36+
(run
37+
"lxc-clone"
38+
"--orig" cli-base
39+
"--new" cli-name)
40+
(init-lxc cli-name)))
41+
42+
(defun create-base (name template)
43+
"Creates an LXC from no base"
44+
(let ((cli-name (adapt-arg name))
45+
(cli-template (adapt-arg template)))
46+
(run
47+
"lxc-create"
48+
"--name" cli-name
49+
"-t" cli-template)
50+
(init-lxc cli-name)))
51+
52+
(defun start (name)
53+
"Starts an LXC"
54+
(let ((cli-name (adapt-arg name)))
55+
(run
56+
"lxc-start"
57+
"--name" cli-name)))
58+
59+
(defun stop (name)
60+
"Stops an LXC"
61+
(let ((cli-name (adapt-arg name)))
62+
(run
63+
"lxc-stop"
64+
"--name" cli-name)))
65+
66+
(defun ls ()
67+
"Lists all the LXC"
68+
(run
69+
"lxc-ls"
70+
"--fancy"))
71+
72+
(defun adapt-arg (name)
73+
"Adapts an argument to string"
74+
(when (symbolp name)
75+
(string-downcase (symbol-name name)))
76+
(when (stringp name)
77+
(string-downcase name)))

‎package.lisp

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
;;;; package.lisp
2+
3+
(defpackage #:lxc-wrapper
4+
(:use #:cl)
5+
(:export :create :start :stop :ls))

0 commit comments

Comments
 (0)