Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a03063095e | ||
|
|
69aff594c6 | ||
|
|
7e92d5480f | ||
|
|
2bbff4b3ea | ||
|
|
8a74df0366 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
TODO
|
||||
tags
|
||||
|
||||
4
check
4
check
@@ -18,12 +18,12 @@ fi
|
||||
|
||||
RUNLEVEL=`runlevel | cut -f 2 -d ' '`
|
||||
[ "x$RUNLEVEL" == "x" ] && RUNLEVEL=0
|
||||
if [ $RUNLEVEL -eq 0 ] || [ $RUNLEVEL -eq 6 ]; then
|
||||
if [ "$RUNLEVEL" == "0" ] || [ "$RUNLEVEL" == "6" ]; then
|
||||
echo "Arret ou reboot en cours : on sort"
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ $RUNLEVEL -eq 1 ]; then
|
||||
if [ "$RUNLEVEL" == "1" ]; then
|
||||
echo "Démarrage en cours : on sort"
|
||||
exit
|
||||
fi
|
||||
|
||||
13
debian/changelog
vendored
13
debian/changelog
vendored
@@ -1,3 +1,16 @@
|
||||
domcheck (0.29-1) testing; urgency=low
|
||||
|
||||
* In Systemd, runlevel returns "unknown" and generate errors. Use strings
|
||||
(but do not detect if the system is booting)
|
||||
|
||||
-- Dominique Fournier <dominique@fournier38.fr> Thu, 02 Oct 2025 11:35:09 +0200
|
||||
|
||||
domcheck (0.28-1) testing; urgency=low
|
||||
|
||||
* Ubuntu minimized : put the configuration file /etc/check.conf by installer
|
||||
|
||||
-- Dominique Fournier <dominique@fournier38.fr> Tue, 05 Nov 2024 18:13:20 +0200
|
||||
|
||||
domcheck (0.27-1) testing; urgency=low
|
||||
|
||||
* Add Systemd Support
|
||||
|
||||
6
debian/domcheck.postinst
vendored
6
debian/domcheck.postinst
vendored
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
if [ ! -e /etc/check.conf ]; then
|
||||
cp /usr/share/doc/domcheck/check.conf /etc/check.conf
|
||||
fi
|
||||
|
||||
#DEBHELPER#
|
||||
5
debian/install
vendored
5
debian/install
vendored
@@ -1,2 +1,3 @@
|
||||
supercheck /usr/sbin
|
||||
check /usr/sbin
|
||||
supercheck /usr/sbin
|
||||
check /usr/sbin
|
||||
check.conf /etc
|
||||
|
||||
Reference in New Issue
Block a user