summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/files/1484990
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:34:26 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:35:44 +0000
commit25f8033d556aa17afaea4a5196ea7a69fe248320 (patch)
tree0f056db167683be54ea1e5e72d29d6069af55e7d /results/classifier/deepseek-2-tmp/output/files/1484990
parent8e6da29e4ee5fc14bc1cc816a24f21271f14090d (diff)
downloademulator-bug-study-25f8033d556aa17afaea4a5196ea7a69fe248320.tar.gz
emulator-bug-study-25f8033d556aa17afaea4a5196ea7a69fe248320.zip
add new temporary deepseek-r1:14b results
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/files/1484990')
-rw-r--r--results/classifier/deepseek-2-tmp/output/files/148499020
1 files changed, 20 insertions, 0 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/files/1484990 b/results/classifier/deepseek-2-tmp/output/files/1484990
new file mode 100644
index 00000000..316295b1
--- /dev/null
+++ b/results/classifier/deepseek-2-tmp/output/files/1484990
@@ -0,0 +1,20 @@
+
+fsfreeze-hook script should also ignored dpkg generated files
+
+Hello,
+
+In the fsfreeze-hook script, the following code check if some of the files should be ignored:
+
+
+# Check whether file $1 is a backup or rpm-generated file and should be ignored
+is_ignored_file() {
+    case "$1" in
+        *~ | *.bak | *.orig | *.rpmnew | *.rpmorig | *.rpmsave | *.sample)
+            return 0 ;;
+    esac
+    return 1
+}
+
+The functions should probably also skip dpkg generated files.
+
+I've found a list of the different extensions in the systemd source tree: https://github.com/systemd/systemd/blob/master/src/basic/util.c#L1871
\ No newline at end of file