X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=ctdlvisor.c;h=ece2e9dd34fa83495250e84d453a2589cbdadbf7;hb=f8943c6f2597101db46064435ef6a2af09cd0d79;hp=18b420207ce0cc12f4440666e5e73f0027c93426;hpb=468759f5d6d26de920f6be16f6776607f99dafe3;p=citadel-docker.git diff --git a/ctdlvisor.c b/ctdlvisor.c index 18b4202..ece2e9d 100644 --- a/ctdlvisor.c +++ b/ctdlvisor.c @@ -179,31 +179,6 @@ void main_loop(void) { } -void install_client_link(void) { // FIXME this is all furkokt and needs to be rethought now that it's docker and not appimage - - FILE *fp; - char path_to_link[PATH_MAX]; - snprintf(path_to_link, sizeof path_to_link, CTDL_DIR "citadel"); - fp = fopen(path_to_link, "w"); - if (!fp) { - fprintf(stderr, "%s\n", strerror(errno)); - return; - } - - fprintf(fp, "#!/bin/bash\n" - "export APPDIR=%s\n" - "export LD_LIBRARY_PATH=${APPDIR}/usr/bin:$LD_LIBRARY_PATH\n" - "export PATH=${APPDIR}/usr/bin:$PATH\n" - "exec citadel\n" - , - getenv("APPDIR") - ); - - fchmod(fileno(fp), 0755); - fclose(fp); -} - - int main(int argc, char **argv) { int a; int migrate_mode = 0; @@ -279,8 +254,6 @@ int main(int argc, char **argv) { webcit_pid = start_webcit(); // start WebCit HTTP webcits_pid = start_webcits(); // start WebCit HTTPS - install_client_link(); - main_loop(); }