use the non-staging URL

This commit is contained in:
Arjan van de Ven
2015-01-31 13:48:44 -05:00
parent 07e1f033e1
commit 97431314b5
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -610,6 +610,9 @@ int main(int argc, char *argv[])
char *dir = "/usr/src/debug";
char *shadowdir = "/var/cache/debuginfo/src";
umask(0);
/* give the system some time to boot before we go active; this is a background task */
sleep(1);
if (access("/sys/module/fuse/", F_OK))
system("modprobe fuse");
+1 -1
View File
@@ -196,7 +196,7 @@ static void *server_thread(void *arg)
return NULL;
}
url = NULL;
if (asprintf(&url, "http://localhost/debuginfo/%s%s.tar", prefix, path) < 0) {
if (asprintf(&url, "http://debuginfo.clearlinux.org/debuginfo/%s%s.tar", prefix, path) < 0) {
close(fd);
return NULL;
}