List of commits:
Subject Hash Author Date (UTC)
duilder updates e1bf911eb05998ba5e00638ea145ad9a8e203cbe Catalin(ux) M. BOIE 2018-05-20 19:11:31
Use correct path for systemd .service file bcbde648fc349749beb0c0220d1f083c99f5bf92 Catalin(ux) M. BOIE 2018-05-20 18:46:05
Bump version to 1.0.1 ce378c2fc3f9139c23fb03248c49d89576a0d2ca Catalin(ux) M. BOIE 2018-05-20 18:39:26
Avoid a format string warning; added some tests c6b5c9d46c3b2504f471889ebd8e1a11037e6bc7 Catalin(ux) M. BOIE 2018-05-20 18:39:06
More protections for attaches (compiler) 79bd62786a0549d557614ece28a978fca7fdf63b Catalin(ux) M. BOIE 2018-05-10 18:00:08
Spelling corrections aaa52f5924c18f691e9475a65c9a2223f2a13e14 Catalin(ux) M. BOIE 2018-04-26 19:56:31
Small README update 3535924e1cda76040cd1309de11fe9a8a0b2e39e Catalin(ux) M. BOIE 2018-04-26 19:53:22
Use RAND_bytes instead of getrandom because it is not supported on CentOS7 86b71d957f8ca371f04837746c0ac9689306d48e Catalin(ux) M. BOIE 2018-04-03 03:49:17
Small stuff dealing with ENOBUFS; doc updated 17bb2fc3712e1704519d4c4257462e71350dfa93 Catalin(ux) M. BOIE 2018-03-23 03:28:39
Add first support for ct marking 19268d626b40bdd18480cc79fa597aa4bff9c824 Catalin(ux) M. BOIE 2018-03-21 17:23:01
More tweakings all around 0c5961860deadb8bcb1dfd1be429b2966f03312a Catalin(ux) M. BOIE 2018-03-11 21:10:32
Added password support df6d270a3e243084069a31fe980d76c97d89a861 Catalin(ux) M. BOIE 2018-02-13 22:46:53
Checkpoint 049e12584744b8a51bfc5867fd0e7b2db0592deb Catalin(ux) M. BOIE 2018-02-11 22:25:13
Fixed a bug in totp, added keys in memory abec61861e2f37398026dbe7342d7751390e95d8 Catalin(ux) M. BOIE 2018-02-04 18:36:12
Initial version c641fafbd46342cd24fde45129cc3637b7ca65bc Catalin(ux) M. BOIE 2018-02-03 23:42:32
Commit e1bf911eb05998ba5e00638ea145ad9a8e203cbe - duilder updates
Author: Catalin(ux) M. BOIE
Author date (UTC): 2018-05-20 19:11
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2018-05-20 19:11
Parent(s): bcbde648fc349749beb0c0220d1f083c99f5bf92
Signing key:
Tree: 0e1be0fedead6e7db4cf0176ffe724c978489200
File Lines added Lines deleted
Makefile.in 2 2
duilder 4 1
File Makefile.in changed (mode: 100644) (index d6b58a7..a5cc3f0)
... ... install: all
53 53 @mkdir -p $(I_ETC) @mkdir -p $(I_ETC)
54 54 @cp -vd --no-clobber nf2fa.conf.sample $(I_ETC)/nf2fa.conf @cp -vd --no-clobber nf2fa.conf.sample $(I_ETC)/nf2fa.conf
55 55 @cp -vd nf2fa.conf.sample $(I_ETC)/ @cp -vd nf2fa.conf.sample $(I_ETC)/
56 @mkdir -p $(I_USR_LIB)/systemd/system
57 @cp -vd $(PRJ).service $(I_USR_LIB)/systemd/system
56 @mkdir -p $(I_DUILDER_SYSTEMD)/system
57 @cp -vd $(PRJ).service $(I_DUILDER_SYSTEMD)/system
58 58
File duilder changed (mode: 100755) (index bcef40a..e058c68)
... ... done
445 445 # Last fixes # Last fixes
446 446 VAR_LOG="${VAR}/log" VAR_LOG="${VAR}/log"
447 447 VAR_RUN="${VAR}/run" VAR_RUN="${VAR}/run"
448 DUILDER_SYSTEMD="${USR}/lib/systemd"
448 449
449 for i in ETC BIN USR USR_BIN USR_SBIN USR_INCLUDE USR_LIB USR_SHARE USR_SHARE_DOC SBIN VAR VAR_LIB MAN VAR_LOG VAR_RUN; do
450 for i in ETC BIN USR USR_BIN USR_SBIN USR_INCLUDE USR_LIB USR_SHARE USR_SHARE_DOC SBIN VAR VAR_LIB MAN VAR_LOG VAR_RUN DUILDER_SYSTEMD; do
450 451 eval value=\$$i eval value=\$$i
451 452 echo "[*] Var ${i}=${value}" echo "[*] Var ${i}=${value}"
452 453 done done
 
... ... echo "s#@USR_LIB@#${USR_LIB}#g" >> tmp.sed
580 581 echo "s#@USR_SHARE@#${USR_SHARE}#g" >> tmp.sed echo "s#@USR_SHARE@#${USR_SHARE}#g" >> tmp.sed
581 582 echo "s#@USR_SHARE_DOC@#${USR_SHARE_DOC}#g" >> tmp.sed echo "s#@USR_SHARE_DOC@#${USR_SHARE_DOC}#g" >> tmp.sed
582 583 echo "s#@MAN@#${MAN}#g" >> tmp.sed echo "s#@MAN@#${MAN}#g" >> tmp.sed
584 echo "s#@DUILDER_SYSTEMD@#${DUILDER_SYSTEMD}#g" >> tmp.sed
583 585 # Export stuff # Export stuff
584 586 echo "s#@EXPORT_PATH@#${EXPORT_PATH}#g" >> tmp.sed echo "s#@EXPORT_PATH@#${EXPORT_PATH}#g" >> tmp.sed
585 587 # cc_switches # cc_switches
 
... ... if [ -r Makefile.in ]; then
617 619 echo "export I_VAR_LOG := \$(DESTDIR)${VAR_LOG}" >> Makefile echo "export I_VAR_LOG := \$(DESTDIR)${VAR_LOG}" >> Makefile
618 620 echo "export I_VAR_RUN := \$(DESTDIR)${VAR_RUN}" >> Makefile echo "export I_VAR_RUN := \$(DESTDIR)${VAR_RUN}" >> Makefile
619 621 echo "export I_MAN := \$(DESTDIR)${MAN}" >> Makefile echo "export I_MAN := \$(DESTDIR)${MAN}" >> Makefile
622 echo "export I_DUILDER_SYSTEMD := \$(DESTDIR)${DUILDER_SYSTEMD}" >> Makefile
620 623 echo >> Makefile echo >> Makefile
621 624 echo "# DB stuff" >> Makefile echo "# DB stuff" >> Makefile
622 625 echo "export DB_SUPPORT := ${DB_SUPPORT}" >> Makefile echo "export DB_SUPPORT := ${DB_SUPPORT}" >> Makefile
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/nf2fa

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/nf2fa

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/nf2fa

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main