aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-16 18:39:13 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-16 18:39:13 -0700
commitb981a5e783d491de1aad59abb5db8469b73c1080 (patch)
treeca792a586eb97e89e77c304cd7c9a92df6be7920
parentce5ab88ba012ae95c3916246d07e5de495a9edc0 (diff)
downloadconsfigurator-b981a5e783d491de1aad59abb5db8469b73c1080.tar.gz
move code into an src/ subdir
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--consfigurator.asd8
-rw-r--r--src/connection/local.lisp (renamed from connection/local.lisp)0
-rw-r--r--src/connection/ssh.lisp (renamed from connection/ssh.lisp)0
-rw-r--r--src/core.lisp (renamed from core.lisp)0
-rw-r--r--src/data/asdf.lisp (renamed from data/asdf.lisp)0
-rw-r--r--src/data/pgp.lisp (renamed from data/pgp.lisp)0
-rw-r--r--src/package.lisp (renamed from package.lisp)0
-rw-r--r--src/property/command.lisp (renamed from property/command.lisp)0
-rw-r--r--src/property/file.lisp (renamed from property/file.lisp)0
-rw-r--r--src/util.lisp (renamed from util.lisp)0
10 files changed, 4 insertions, 4 deletions
diff --git a/consfigurator.asd b/consfigurator.asd
index 08db699..a28e339 100644
--- a/consfigurator.asd
+++ b/consfigurator.asd
@@ -3,7 +3,7 @@
:depends-on (#:cl-ppcre
#:alexandria
#:cl-interpol)
- :components ((:file "package")
- (:file "util")
- (:file "core")
- (:file "connection/ssh")))
+ :components ((:file "src/package")
+ (:file "src/util")
+ (:file "src/core")
+ (:file "src/connection/ssh")))
diff --git a/connection/local.lisp b/src/connection/local.lisp
index e219fea..e219fea 100644
--- a/connection/local.lisp
+++ b/src/connection/local.lisp
diff --git a/connection/ssh.lisp b/src/connection/ssh.lisp
index 9e51ffb..9e51ffb 100644
--- a/connection/ssh.lisp
+++ b/src/connection/ssh.lisp
diff --git a/core.lisp b/src/core.lisp
index afa80c4..afa80c4 100644
--- a/core.lisp
+++ b/src/core.lisp
diff --git a/data/asdf.lisp b/src/data/asdf.lisp
index bca2346..bca2346 100644
--- a/data/asdf.lisp
+++ b/src/data/asdf.lisp
diff --git a/data/pgp.lisp b/src/data/pgp.lisp
index c5affa5..c5affa5 100644
--- a/data/pgp.lisp
+++ b/src/data/pgp.lisp
diff --git a/package.lisp b/src/package.lisp
index 3ffae1b..3ffae1b 100644
--- a/package.lisp
+++ b/src/package.lisp
diff --git a/property/command.lisp b/src/property/command.lisp
index a040968..a040968 100644
--- a/property/command.lisp
+++ b/src/property/command.lisp
diff --git a/property/file.lisp b/src/property/file.lisp
index 91ab379..91ab379 100644
--- a/property/file.lisp
+++ b/src/property/file.lisp
diff --git a/util.lisp b/src/util.lisp
index 6378d02..6378d02 100644
--- a/util.lisp
+++ b/src/util.lisp