diff options
author | William Douglas <william.douglas@intel.com> | 2013-01-08 14:11:25 -0800 |
---|---|---|
committer | William Douglas <william.douglas@intel.com> | 2013-01-09 14:59:05 -0800 |
commit | e5c3feaabe65b1e453f4325464f5fa77e4a586ce (patch) | |
tree | 9c22d4152e3fed8c977a6198fb20b9172b0cbec7 | |
parent | 15037e8e0de6741fde24fe3c030e5ed2d768d26c (diff) | |
download | corewatcher-e5c3feaabe65b1e453f4325464f5fa77e4a586ce.tar.gz corewatcher-e5c3feaabe65b1e453f4325464f5fa77e4a586ce.tar.bz2 corewatcher-e5c3feaabe65b1e453f4325464f5fa77e4a586ce.zip |
Update for Tizen-PC
Switch from nitra based configurations.
Signed-off-by: William Douglas <william.douglas@intel.com>
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | corewatcher.conf | 2 | ||||
-rw-r--r-- | src/corewatcher.c | 2 | ||||
-rw-r--r-- | src/corewatcher.service.in | 4 |
4 files changed, 5 insertions, 5 deletions
@@ -3,7 +3,7 @@ autoreconf --install args="--prefix=/usr \ ---libdir=/usr/lib64 \ +--libdir=/usr/lib \ --sysconfdir=/etc" echo ./configure $args $@ diff --git a/corewatcher.conf b/corewatcher.conf index e7f46af..a431a92 100644 --- a/corewatcher.conf +++ b/corewatcher.conf @@ -37,5 +37,5 @@ allow-pass-on=yes # submit-url = http://url2.com/submitbug.php # -submit-url=http://kojibuild7.jf.intel.com/crash_submit/ +submit-url=http://crashdb02.jf.intel.com/crash_submit/ diff --git a/src/corewatcher.c b/src/corewatcher.c index ba8e1a5..965ae58 100644 --- a/src/corewatcher.c +++ b/src/corewatcher.c @@ -195,7 +195,7 @@ int main(int argc, char**argv) return EXIT_SUCCESS; } - sd_journal_print(LOG_INFO, "Nitra corewatcher %s", VERSION); + sd_journal_print(LOG_INFO, "Tizen corewatcher %s", VERSION); inotify_thread = g_thread_new("corewatcherinot", inotify_loop, NULL); if (inotify_thread == NULL) diff --git a/src/corewatcher.service.in b/src/corewatcher.service.in index 36d79d5..95daf8d 100644 --- a/src/corewatcher.service.in +++ b/src/corewatcher.service.in @@ -1,11 +1,11 @@ [Unit] -Description=Nitra corefile monitor for collecting crash data +Description=Tizen corefile monitor for collecting crash data DefaultDependencies=no After=sysinit.target [Service] Type=forking -ExecStart=@prefix@/bin/corewatcher +ExecStart=@prefix@/sbin/corewatcher Restart=always StartLimitInterval=300 StartLimitBurst=2 |