Add generic fcron.d directory
authorHugo Villeneuve <hugo@hugovil.com>
Tue, 17 Jun 2014 02:21:18 +0000 (22:21 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Thu, 31 Jul 2014 02:15:25 +0000 (22:15 -0400)
Add run-fstrim fcron script.

stage3/misc/fcron.d/run-fstrim [new file with mode: 0644]
stage3/misc/fcron.d/update-pciids [new file with mode: 0644]
stage3/misc/fcron.d/update-usbids [new file with mode: 0644]
stage3/misc/update-pciids [deleted file]
stage3/misc/update-usbids [deleted file]
stage3/pkg/fcron
stage3/pkg/pciutils
stage3/pkg/usbutils [deleted file]

diff --git a/stage3/misc/fcron.d/run-fstrim b/stage3/misc/fcron.d/run-fstrim
new file mode 100644 (file)
index 0000000..54e5f5d
--- /dev/null
@@ -0,0 +1,3 @@
+# &options min hrs day-of-month month day-of-week command
+# Run fstrim command once a week at 1:05
+&mail(false) 05 01 * * 1 /usr/local/bin/run-fstrim.sh
diff --git a/stage3/misc/fcron.d/update-pciids b/stage3/misc/fcron.d/update-pciids
new file mode 100644 (file)
index 0000000..c297fd0
--- /dev/null
@@ -0,0 +1,3 @@
+# &options min hrs day-of-month month day-of-week command
+# Update PCI IDs database every day at 4:05
+&mail(false) 05 04 * * * /usr/sbin/update-pciids
diff --git a/stage3/misc/fcron.d/update-usbids b/stage3/misc/fcron.d/update-usbids
new file mode 100644 (file)
index 0000000..ffd2af4
--- /dev/null
@@ -0,0 +1,4 @@
+# &options min hrs day-of-month month day-of-week command
+# Update USB IDs database every day at 4:05
+&mail(false) 05 04 * * * /usr/sbin/update-usbids.sh
+
diff --git a/stage3/misc/update-pciids b/stage3/misc/update-pciids
deleted file mode 100644 (file)
index c297fd0..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-# &options min hrs day-of-month month day-of-week command
-# Update PCI IDs database every day at 4:05
-&mail(false) 05 04 * * * /usr/sbin/update-pciids
diff --git a/stage3/misc/update-usbids b/stage3/misc/update-usbids
deleted file mode 100644 (file)
index ffd2af4..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-# &options min hrs day-of-month month day-of-week command
-# Update USB IDs database every day at 4:05
-&mail(false) 05 04 * * * /usr/sbin/update-usbids.sh
-
index 1397f71..745420b 100644 (file)
@@ -86,4 +86,6 @@ EOF
 
     # script-name start stop
     bootscript_add_rcsysinit fcron 95 84
+
+    install -v -m644 ${SCRDIR}/misc/fcron.d/* /etc/fcron/fcron.d
 }
index 943f0de..429b0dc 100644 (file)
@@ -20,8 +20,3 @@ hvbuild()
         ZLIB=no                  \
         install install-lib
 }
-
-hvbuild_post()
-{
-    install -v -m644 ${SCRDIR}/misc/update-pciids /etc/fcron/fcron.d
-}
diff --git a/stage3/pkg/usbutils b/stage3/pkg/usbutils
deleted file mode 100644 (file)
index e98ab51..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-hvbuild_post()
-{
-    install -v -m644 ${SCRDIR}/misc/update-usbids /etc/fcron/fcron.d
-}