浏览代码

Return to compiling tlsdate from source

This is in order to include recent pull requests which
are not yet upstreamed.

It also looks like tlsdate may be removed from future
debian versions due to lack of maintenance.
Bob Mottram 8 年前
父节点
当前提交
eae6b96735
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 62 次插入1 次删除
  1. 62
    1
      src/freedombone

+ 62
- 1
src/freedombone 查看文件

564
 # refresh gpg keys every few hours
564
 # refresh gpg keys every few hours
565
 REFRESH_GPG_KEYS_HOURS=2
565
 REFRESH_GPG_KEYS_HOURS=2
566
 
566
 
567
+# Time synchronisation
568
+TLSDATE_REPO="https://github.com/bashrc/tlsdate"
569
+TLSDATE_COMMIT='505e31540eebde8074e7dc93b29be0d848def06a'
570
+
567
 function show_help {
571
 function show_help {
568
 	echo ''
572
 	echo ''
569
 	echo $"${PROJECT_NAME} -c [configuration file]"
573
 	echo $"${PROJECT_NAME} -c [configuration file]"
1673
 				if [[ $repo_dir == *"cjdns" ]]; then
1677
 				if [[ $repo_dir == *"cjdns" ]]; then
1674
 					./do
1678
 					./do
1675
 				fi
1679
 				fi
1680
+				if [[ $repo_dir == *"tlsdate" ]]; then
1681
+					cd $INSTALL_DIR/tlsdate
1682
+					make clean
1683
+					./configure
1684
+					make
1685
+					make install
1686
+				fi
1676
 				if [[ $repo_dir == *"gpgit" ]]; then
1687
 				if [[ $repo_dir == *"gpgit" ]]; then
1677
 					cp gpgit.pl /usr/bin/gpgit.pl
1688
 					cp gpgit.pl /usr/bin/gpgit.pl
1678
 				fi
1689
 				fi
4127
 	echo 'time_synchronisation' >> $COMPLETION_FILE
4138
 	echo 'time_synchronisation' >> $COMPLETION_FILE
4128
 }
4139
 }
4129
 
4140
 
4141
+function time_synchronisation_tlsdate {
4142
+	# mesh peers typically don't sync over the internet
4143
+	if [[ $SYSTEM_TYPE == "$VARIANT_MESH" ]]; then
4144
+		return
4145
+	fi
4146
+
4147
+	if [ -f /usr/local/bin/${PROJECT_NAME}-update-date ]; then
4148
+		cp /usr/local/bin/${PROJECT_NAME}-update-date /usr/bin/updatedate
4149
+	else
4150
+		cp /usr/bin/${PROJECT_NAME}-update-date /usr/bin/updatedate
4151
+	fi
4152
+	chmod +x /usr/bin/updatedate
4153
+
4154
+	if [ ! -d $INSTALL_DIR ]; then
4155
+		mkdir -p $INSTALL_DIR
4156
+	fi
4157
+	set_repo_commit $INSTALL_DIR/tlsdate "tlsdate commit" "$TLSDATE_COMMIT" $TLSDATE_REPO
4158
+
4159
+	if grep -Fxq "time_synchronisation_tlsdate" $COMPLETION_FILE; then
4160
+		return
4161
+	fi
4162
+
4163
+	apt-get -y remove tlsdate ntpdate
4164
+	apt-get -y install build-essential autoconf libevent-dev
4165
+
4166
+	cd $INSTALL_DIR
4167
+	git_clone $TLSDATE_REPO $INSTALL_DIR/tlsdate
4168
+	cd $INSTALL_DIR/tlsdate
4169
+	git checkout $TLSDATE_COMMIT -b $TLSDATE_COMMIT
4170
+	./autogen.sh
4171
+	./configure
4172
+	if [ ! "$?" = "0" ]; then
4173
+		echo $'Unable to configure tlsdate'
4174
+		exit 6825277
4175
+	fi
4176
+	make
4177
+	if [ ! "$?" = "0" ]; then
4178
+		echo $'Unable to build tlsdate'
4179
+		exit 3792726
4180
+	fi
4181
+	make install
4182
+
4183
+	if ! grep -q "updatedate" /etc/crontab; then
4184
+		echo '*/15           * *   *   *   root /usr/bin/updatedate' >> /etc/crontab
4185
+		systemctl restart cron
4186
+	fi
4187
+
4188
+	echo 'time_synchronisation_tlsdate' >> $COMPLETION_FILE
4189
+}
4190
+
4130
 function configure_firewall {
4191
 function configure_firewall {
4131
 	if grep -q "RELATED" /etc/firewall.conf; then
4192
 	if grep -q "RELATED" /etc/firewall.conf; then
4132
 		# recreate the firewall to remove RELATED
4193
 		# recreate the firewall to remove RELATED
11316
 enable_zram
11377
 enable_zram
11317
 random_number_generator
11378
 random_number_generator
11318
 set_your_domain_name
11379
 set_your_domain_name
11319
-time_synchronisation
11380
+time_synchronisation_tlsdate
11320
 configure_internet_protocol
11381
 configure_internet_protocol
11321
 create_git_project
11382
 create_git_project
11322
 setup_wifi
11383
 setup_wifi