Commit c1256c2e70f7a1f8b89ac1d9e81ea53994a365c3

Thomas de Grivel 2018-07-26T14:28:21

update license and copyright

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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
diff --git a/adams.asd b/adams.asd
index afdb555..d1fb1bd 100644
--- a/adams.asd
+++ b/adams.asd
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
@@ -23,7 +23,7 @@
 
 (defsystem :adams
   :name "adams"
-  :author "Thomas de Grivel <billitch@gmail.com>"
+  :author "Thomas de Grivel <thoxdg@gmail.com>"
   :version "0.1"
   :description "Remote system administration tools"
   :depends-on ("alexandria"
diff --git a/build.lisp b/build.lisp
index 728b69e..6fbd845 100644
--- a/build.lisp
+++ b/build.lisp
@@ -1,3 +1,20 @@
+;;
+;;  adams - system administrator written in Common Lisp
+;;
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
+;;
+;;  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.
+;;
 
 (in-package :common-lisp-user)
 
diff --git a/core/defs.lisp b/core/defs.lisp
index 8d9eb10..cf6fbf4 100644
--- a/core/defs.lisp
+++ b/core/defs.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/host.lisp b/core/host.lisp
index a9a0b24..681e5f8 100644
--- a/core/host.lisp
+++ b/core/host.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/operation.lisp b/core/operation.lisp
index 06aad77..0654d84 100644
--- a/core/operation.lisp
+++ b/core/operation.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/os.lisp b/core/os.lisp
index 75ab872..e1cc9fa 100644
--- a/core/os.lisp
+++ b/core/os.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/probe.lisp b/core/probe.lisp
index 5c852d6..fc29db0 100644
--- a/core/probe.lisp
+++ b/core/probe.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/properties.lisp b/core/properties.lisp
index 204680b..a232b4b 100644
--- a/core/properties.lisp
+++ b/core/properties.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/resource-container.lisp b/core/resource-container.lisp
index bb1a210..f187572 100644
--- a/core/resource-container.lisp
+++ b/core/resource-container.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/resource.lisp b/core/resource.lisp
index 5904ad0..360660c 100644
--- a/core/resource.lisp
+++ b/core/resource.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/spec.lisp b/core/spec.lisp
index 0ba8df2..f95d4ed 100644
--- a/core/spec.lisp
+++ b/core/spec.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/core/syntaxes.lisp b/core/syntaxes.lisp
index 4005820..60638a9 100644
--- a/core/syntaxes.lisp
+++ b/core/syntaxes.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/package.lisp b/package.lisp
index 4466baf..71242be 100644
--- a/package.lisp
+++ b/package.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/shell/sb-shell.lisp b/shell/sb-shell.lisp
index 2c5462a..9abbbee 100644
--- a/shell/sb-shell.lisp
+++ b/shell/sb-shell.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/shell/shell.lisp b/shell/shell.lisp
index d4cb784..edbe68f 100644
--- a/shell/shell.lisp
+++ b/shell/shell.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/test.lisp b/test.lisp
index 3e70446..d147259 100644
--- a/test.lisp
+++ b/test.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/toplevel.lisp b/toplevel.lisp
index e3bd1af..3396cc6 100644
--- a/toplevel.lisp
+++ b/toplevel.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/commands.lisp b/unix/commands.lisp
index 05dd0c6..0a7c506 100644
--- a/unix/commands.lisp
+++ b/unix/commands.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/debian.lisp b/unix/debian.lisp
index c2bd707..899d274 100644
--- a/unix/debian.lisp
+++ b/unix/debian.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2018 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/defs.lisp b/unix/defs.lisp
index 1cf7d07..8592d5a 100644
--- a/unix/defs.lisp
+++ b/unix/defs.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/freebsd.lisp b/unix/freebsd.lisp
index 199b700..e279a38 100644
--- a/unix/freebsd.lisp
+++ b/unix/freebsd.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/linux.lisp b/unix/linux.lisp
index 1727036..deacfbb 100644
--- a/unix/linux.lisp
+++ b/unix/linux.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/openbsd.lisp b/unix/openbsd.lisp
index ed010e0..ab3b13e 100644
--- a/unix/openbsd.lisp
+++ b/unix/openbsd.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/operations.lisp b/unix/operations.lisp
index 931fcf5..ecfdfea 100644
--- a/unix/operations.lisp
+++ b/unix/operations.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/probes.lisp b/unix/probes.lisp
index e271418..5bb8e06 100644
--- a/unix/probes.lisp
+++ b/unix/probes.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/ssh.lisp b/unix/ssh.lisp
index 43205d5..1494a97 100644
--- a/unix/ssh.lisp
+++ b/unix/ssh.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/stat.lisp b/unix/stat.lisp
index d17bee9..5297a8f 100644
--- a/unix/stat.lisp
+++ b/unix/stat.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above
diff --git a/unix/syntaxes.lisp b/unix/syntaxes.lisp
index 2e20092..78cc79d 100644
--- a/unix/syntaxes.lisp
+++ b/unix/syntaxes.lisp
@@ -1,7 +1,7 @@
 ;;
-;;  adams  -  Remote system administration tools
+;;  adams - system administrator written in Common Lisp
 ;;
-;;  Copyright 2013,2014 Thomas de Grivel <thomas@lowh.net>
+;;  Copyright 2013,2014,2018 Thomas de Grivel <thoxdg@gmail.com>
 ;;
 ;;  Permission to use, copy, modify, and distribute this software for any
 ;;  purpose with or without fee is hereby granted, provided that the above