-
Notifications
You must be signed in to change notification settings - Fork 22
/
ubuntu.go
964 lines (873 loc) · 29.3 KB
/
ubuntu.go
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
package distros
import (
"fmt"
"strings"
c "github.com/mtesauro/commandeer"
)
// Slice of Target structs supported Ubuntu Install Targets
var ubuntuReleases = []c.Target{
{
ID: "Ubuntu:23.10",
Distro: "Ubuntu",
Release: "23.10",
OS: "Linux",
Shell: "bash",
},
{
ID: "Ubuntu:22.04",
Distro: "Ubuntu",
Release: "22.04",
OS: "Linux",
Shell: "bash",
},
{
ID: "Ubuntu:21.04",
Distro: "Ubuntu",
Release: "21.04",
OS: "Linux",
Shell: "bash",
},
}
// Commands for Ubuntu
func GetUbuntu(bc *c.CmdPkg, t string) error {
// Use the label and target to get the correct commands
switch {
case bc.Label == "bootstrap":
err := getUbuntuBootstrap(bc, t)
if err != nil {
// Return error from getUbuntuBootstrap()
return err
}
case bc.Label == "installerprep":
err := getUbuntuInstallerPrep(bc, t)
if err != nil {
// Return error from getUbuntuInstallerPrep()
return err
}
case bc.Label == "prepdjango":
err := getUbuntuPrepDjango(bc, t)
if err != nil {
// Return error from getUbuntuInstallerPrep()
return err
}
case bc.Label == "createsettings":
err := getUbuntuCreateSettings(bc, t)
if err != nil {
// Return error from getUbuntuCreateSettings()
return err
}
case bc.Label == "setupdojo":
err := getUbuntuSetupDojo(bc, t)
if err != nil {
// Return error from getUbuntuCreateSettings()
return err
}
default:
return fmt.Errorf("Unable to find a set of commands for the label %s\n", bc.Label)
}
return nil
}
func GetUbuntuDB(bc *c.CmdPkg, t string, d string) error {
// Use the label and target to get the correct commands
switch {
case bc.Label == "installdb":
// Determine target DB
switch {
case strings.ToLower(d) == "mysql":
err := getUbuntuInstallMySQL(bc, t)
if err != nil {
// REturn error from getUbuntuInstallMySQL()
return err
}
case strings.ToLower(d) == "postgresql":
err := getUbuntuInstallPostgres(bc, t)
if err != nil {
// REturn error from getUbuntuInstallPostgres()
return err
}
default:
return fmt.Errorf("Unable to find a set of commands for the database %s\n", d)
}
case bc.Label == "startdb":
// Determine target DB
switch {
case strings.ToLower(d) == "mysql":
err := getUbuntuStartMySQL(bc, t)
if err != nil {
// Return error from getUbuntuInstallMySQL()
return err
}
case strings.ToLower(d) == "postgresql":
err := getUbuntuStartPostgres(bc, t)
if err != nil {
// Return error from getUbuntuInstallPostgres()
return err
}
default:
return fmt.Errorf("Unable to find commands to start the database %s\n", d)
}
case bc.Label == "installdbclient":
// Determine target DB
switch {
case strings.ToLower(d) == "mysql":
err := getUbuntuInstallMySQLClient(bc, t)
if err != nil {
// Return error from getUbuntuInstallMySQLClient()
return err
}
case strings.ToLower(d) == "postgresql":
err := getUbuntuInstallPgClient(bc, t)
if err != nil {
// Return error from getUbuntuInstallPostgres()
return err
}
default:
return fmt.Errorf("Unable to find commands to start the database %s\n", d)
}
default:
return fmt.Errorf("Unable to find a set of commands for the label %s\n", bc.Label)
}
return nil
}
///////////////////////////////////////////////////////////////////////////////
// Bootstrap commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuBootstrap() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310Bootstrap
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204Bootstrap
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104Bootstrap
}
}
}
func getUbuntuBootstrap(bc *c.CmdPkg, t string) error {
// Set bootstrap as the commands to use
setUbuntuBootstrap()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 Bootstrap commands
var u2204Bootstrap = []c.SingleCmd{
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get update",
Errmsg: "Unable to update apt database",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get -y upgrade",
Errmsg: "Unable to upgrade OS packages with apt",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::=\"--force-confdef\" -o Dpkg::Options::=\"--force-confold\" install python3 python3-virtualenv ca-certificates curl gnupg git sudo",
Errmsg: "Unable to install prerequisites for installer via apt",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104Bootstrap = append([]c.SingleCmd{}, u2204Bootstrap...)
// No command changes needed for Ubuntu 23.10
var u2310Bootstrap = append([]c.SingleCmd{}, u2204Bootstrap...)
///////////////////////////////////////////////////////////////////////////////
// Installer Prep commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuInstallerPrep() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310InstallerPrep
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204InstallerPrep
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104InstallerPrep
}
}
}
func getUbuntuInstallerPrep(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuInstallerPrep()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 installer prep Commands
// TODO Check if the yarn command needs updating
var u2204InstallerPrep = []c.SingleCmd{
c.SingleCmd{
Cmd: "curl -sS {yarnGPG} | apt-key add -",
Errmsg: "Unable to obtain the gpg key for Yarn",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "echo -n {yarnRepo} > /etc/apt/sources.list.d/yarn.list",
Errmsg: "Unable to add yard repo as an apt source",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get update",
Errmsg: "Unable to update apt database",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get -y install sudo libmysqlclient-dev",
Errmsg: "Unable to install sudo and MySQL client library",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "curl -sL {nodeURL} | bash - ",
Errmsg: "Unable to install nodejs",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get install -y apt-transport-https libjpeg-dev gcc libssl-dev python3-dev python3-pip python3-virtualenv yarn build-essential expect libcurl4-openssl-dev",
Errmsg: "Installing OS packages with apt failed",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104InstallerPrep = append([]c.SingleCmd{}, u2204InstallerPrep...)
// No command changes needed for Ubuntu 23.10
var u2310InstallerPrep = append([]c.SingleCmd{}, u2204InstallerPrep...)
///////////////////////////////////////////////////////////////////////////////
// Install MySQL commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuInstallMySQL() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310NoDBMySQL
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204NoDBMySQL
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104NoDBMySQL
}
}
}
func getUbuntuInstallMySQL(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuInstallMySQL()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands to install MySQL for target %s\n", t)
}
// Ubuntu 22.04 install MySQL Commands
var u2204NoDBMySQL = []c.SingleCmd{
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server libmysqlclient-dev",
Errmsg: "Unable to install MySQL",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104NoDBMySQL = append([]c.SingleCmd{}, u2204NoDBMySQL...)
// No command changes needed for Ubuntu 23.10
var u2310NoDBMySQL = append([]c.SingleCmd{}, u2204NoDBMySQL...)
///////////////////////////////////////////////////////////////////////////////
// Install Postgres commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuInstallPostgres() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310NoDBPostgres
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204NoDBPostgres
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104NoDBPostgres
}
}
}
func getUbuntuInstallPostgres(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuInstallPostgres()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands to install PostgreSQL for target %s\n", t)
}
// Ubuntu 22.04 install Postgres Commands
var u2204NoDBPostgres = []c.SingleCmd{
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get install -y libpq-dev postgresql postgresql-contrib postgresql-client-common",
Errmsg: "Unable to install PostgreSQL",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104NoDBPostgres = append([]c.SingleCmd{}, u2204NoDBPostgres...)
// No command changes needed for Ubuntu 21.04
var u2310NoDBPostgres = append([]c.SingleCmd{}, u2204NoDBPostgres...)
///////////////////////////////////////////////////////////////////////////////
// Install MySQL client commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuInstallMySQLClient() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
//ubuntuReleases[k].PkgCmds = u2204InstMySQLClient
case ubuntuReleases[k].Release == "22.04":
//ubuntuReleases[k].PkgCmds = u2204InstMySQLClient
case ubuntuReleases[k].Release == "21.04":
//ubuntuReleases[k].PkgCmds = u2104InstMySQLClient
}
}
}
func getUbuntuInstallMySQLClient(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuInstallMySQLClient()
// No match for the target provided
//return fmt.Errorf("Unable to find commands for target %s\n", t)
return fmt.Errorf("Commands for target %s have not been implemented\n", t)
}
///////////////////////////////////////////////////////////////////////////////
// Install Postgres client commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuInstallPgClient() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310InstPgClient
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204InstPgClient
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104InstPgClient
}
}
}
func getUbuntuInstallPgClient(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuInstallPgClient()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 install Postgres client Commands
var u2204InstPgClient = []c.SingleCmd{
c.SingleCmd{
Cmd: "DEBIAN_FRONTEND=noninteractive apt-get install -y postgresql-client-14",
Errmsg: "Unable to install PostgreSQL client",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "/usr/sbin/groupadd -f postgres",
Errmsg: "Unable to add postgres group",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "/usr/sbin/useradd -s /bin/bash -m -g postgres postgres",
Errmsg: "Unable to add postgres user",
Hard: false, // incase there is an existing postgres user, useradd returns a 9 exit code
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104InstPgClient = append([]c.SingleCmd{}, u2204InstPgClient...)
// No command changes needed for Ubuntu 23.10
var u2310InstPgClient = append([]c.SingleCmd{}, u2204InstPgClient...)
///////////////////////////////////////////////////////////////////////////////
// Start MySQL commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuStartMySQL() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2301StartMySQL
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204StartMySQL
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104StartMySQL
}
}
}
func getUbuntuStartMySQL(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuStartMySQL()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 Start MySQL Commands
var u2204StartMySQL = []c.SingleCmd{
c.SingleCmd{
Cmd: "service mysql start",
Errmsg: "Unable to start MariaDB",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104StartMySQL = append([]c.SingleCmd{}, u2204StartMySQL...)
// No command changes needed for Ubuntu 23.10
var u2301StartMySQL = append([]c.SingleCmd{}, u2204StartMySQL...)
///////////////////////////////////////////////////////////////////////////////
// Start Postgres commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuStartPostgres() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310StartPostgres
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204StartPostgres
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104StartPostgres
}
}
}
func getUbuntuStartPostgres(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuStartPostgres()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 Start Postgres Commands
var u2204StartPostgres = []c.SingleCmd{
c.SingleCmd{
Cmd: "/usr/sbin/service postgresql start",
Errmsg: "Unable to start PostgreSQL",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104StartPostgres = append([]c.SingleCmd{}, u2204StartPostgres...)
// No command changes needed for Ubuntu 23.10
var u2310StartPostgres = append([]c.SingleCmd{}, u2204StartPostgres...)
///////////////////////////////////////////////////////////////////////////////
// Prep Django commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuPrepDjango() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310PrepDjango
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204PrepDjango
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104PrepDjango
}
}
}
func getUbuntuPrepDjango(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuPrepDjango()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 Prep Django Commands
var u2204PrepDjango = []c.SingleCmd{
c.SingleCmd{
Cmd: "python3 -m virtualenv --python={PyPath} {conf.Install.Root}",
Errmsg: "Unable to setup virtualenv for DefectDojo",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "{conf.Install.Root}/bin/python3 -m pip install --upgrade pip",
Errmsg: "",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "{conf.Install.Root}/bin/pip3 install --upgrade setuptools",
Errmsg: "",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "{conf.Install.Root}/bin/pip3 install -r {conf.Install.Root}/django-DefectDojo/requirements.txt",
Errmsg: "Unable to install Python3 modules for DefectDojo",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "mkdir {conf.Install.Root}/logs",
Errmsg: "Unable to create a directory for logs",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "/usr/sbin/groupadd -f {conf.Install.OS.Group}",
Errmsg: "Unable to create a group for DefectDojo OS user",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "id {conf.Install.OS.User} &>/dev/null; if [ $? -ne 0 ]; then useradd -s /bin/bash -m -g " +
"{conf.Install.OS.Group} {conf.Install.OS.User}; fi",
Errmsg: "Unable to create an OS user for DefectDojo",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "chown -R {conf.Install.OS.User}.{conf.Install.OS.Group} {conf.Install.Root}",
Errmsg: "",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104PrepDjango = append([]c.SingleCmd{}, u2204PrepDjango...)
// No command changes needed for Ubuntu 23.10
var u2310PrepDjango = append([]c.SingleCmd{}, u2204PrepDjango...)
///////////////////////////////////////////////////////////////////////////////
// Create Settings commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuCreateSettings() {
// Connect bootstrap commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310CreateSettings
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204CreateSettings
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104CreateSettings
}
}
}
func getUbuntuCreateSettings(bc *c.CmdPkg, t string) error {
// Set Installer Prep as the commands to use
setUbuntuCreateSettings()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 Create Settings Commands
var u2204CreateSettings = []c.SingleCmd{
c.SingleCmd{
Cmd: "ln -s {conf.Install.Root}/django-DefectDojo/dojo/settings/ " +
"{conf.Install.Root}/customizations",
Errmsg: "Unable to create settings.py file",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "echo '# Add customizations here\n# For more details see:" +
" https://documentation.defectdojo.com/getting_started/configuration/' > {conf.Install.Root}/customizations/local_settings.py",
Errmsg: "Unable to change ownership of .env.prod file",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "chown {conf.Install.OS.User}.{conf.Install.OS.Group} {conf.Install.Root}" +
"/django-DefectDojo/dojo/settings/settings.py",
Errmsg: "Unable to change ownership of settings.py file",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104CreateSettings = append([]c.SingleCmd{}, u2204CreateSettings...)
// No command changes needed for Ubuntu 23.10
var u2310CreateSettings = append([]c.SingleCmd{}, u2204CreateSettings...)
///////////////////////////////////////////////////////////////////////////////
// Setup DefectDojo commands //
///////////////////////////////////////////////////////////////////////////////
func setUbuntuSetupDojo() {
// Connect setup DefectDojo commands to the supported Ubuntu releases
for k := range ubuntuReleases {
switch {
case ubuntuReleases[k].Release == "23.10":
ubuntuReleases[k].PkgCmds = u2310SetupDojo
case ubuntuReleases[k].Release == "22.04":
ubuntuReleases[k].PkgCmds = u2204SetupDojo
case ubuntuReleases[k].Release == "21.04":
ubuntuReleases[k].PkgCmds = u2104SetupDojo
}
}
}
func getUbuntuSetupDojo(bc *c.CmdPkg, t string) error {
// Set setup DefectDojo as the commands to use
setUbuntuSetupDojo()
// Cycle through Ubuntu install targets
for k, v := range ubuntuReleases {
// Find a match for the target ID and the existing list of commands in ubuntuReleases
if strings.Compare(
strings.ToLower(v.ID),
strings.ToLower(t)) == 0 {
bc.Targets = append(bc.Targets, ubuntuReleases[k])
return nil
}
}
// No match for the target provided
return fmt.Errorf("Unable to find commands for target %s\n", t)
}
// Ubuntu 22.04 setup DefectDojo Commands
var u2204SetupDojo = []c.SingleCmd{
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py makemigrations dojo",
Errmsg: "Failed during makemgration dojo",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py migrate",
Errmsg: "Failed during database migrate",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py createsuperuser" +
" --noinput --username=\"{conf.Install.Admin.User}\" --email=\"{conf.Install.Admin.Email}\"",
Errmsg: "Failed while creating DefectDojo superuser",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && " +
"{conf.Install.Root}/django-DefectDojo/setup-superuser.expect {conf.Install.Admin.User} \"{conf.Install.Admin.Pass}\"",
Errmsg: "Failed while setting the password for the DefectDojo superuser",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py loaddata " +
"system_settings initial_banner_conf product_type test_type development_environment benchmark_type " +
"benchmark_category benchmark_requirement language_type objects_review regulation initial_surveys role",
Errmsg: "Failed while the loading data for a default install",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py migrate_textquestions",
Errmsg: "Failed while the loading data for a default survey questions",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py buildwatson",
Errmsg: "Failed while the running buildwatson",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py installwatson",
Errmsg: "Failed while the running installwatson",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py initialize_test_types",
Errmsg: "Failed to initialize test_types",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo && source ../bin/activate && python3 manage.py initialize_permissions",
Errmsg: "Failed to initialize permissions",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo/components && yarn",
Errmsg: "Failed while the running yarn",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "cd {conf.Install.Root}/django-DefectDojo/ && source ../bin/activate && python3 manage.py collectstatic --noinput",
Errmsg: "Failed while the running collectstatic",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
c.SingleCmd{
Cmd: "chown -R {conf.Install.OS.User}.{conf.Install.OS.Group} {conf.Install.Root}",
Errmsg: "Unable to change ownership of the DefectDojo directory",
Hard: true,
Timeout: 0,
BeforeText: "",
AfterText: "",
},
}
// No command changes needed for Ubuntu 21.04
var u2104SetupDojo = append([]c.SingleCmd{}, u2204SetupDojo...)
// No command changes needed for Ubuntu 23.10
var u2310SetupDojo = append([]c.SingleCmd{}, u2204SetupDojo...)