-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (28 loc) · 736 Bytes
/
Makefile
File metadata and controls
39 lines (28 loc) · 736 Bytes
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
help:
@echo -e " \
make help | Shows this help text. \n \
make new | The same as make install. \n \
make install | Let you choose a new version. \n \
make update | Update container but not upgrade to a new version. \n \
make upgrade | Upgrade to a new version. \n \
make delete | Removes the MISP-dockerized volumes, container and network."
upgrade:
bash ./UPGRADE.sh
update:
bash ./UPDATE
install:
bash ./FOR_NEW_INSTALL.sh $(VERSION)
make -C current install
new: install
delete:
make -C current delete
support:
bash .scripts/support.sh
change-ssl:
-make -C current change-ssl
change-smime:
-make -C current change-smime
change-pgp:
-make -C current change-pgp
backup:
make -C current backup-all