* [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume
@ 2024-03-27 19:39 Stefan Schantl
2024-03-27 19:39 ` [PATCHv2 2/4] grub-btrfsd: Use generic volume_fs_type function for FS detection Stefan Schantl
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Stefan Schantl @ 2024-03-27 19:39 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 556 bytes --]
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/initscripts/system/functions | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/initscripts/system/functions b/src/initscripts/system/functions
index 5a26aef45..b610143ab 100644
--- a/src/initscripts/system/functions
+++ b/src/initscripts/system/functions
@@ -883,3 +883,11 @@ running_on_oci() {
# We are not running on OCI
return 1
}
+
+volume_fs_type() {
+ if [ ! -d "${1}" ]; then
+ return
+ fi
+
+ stat -f --format="%T" ${1}
+}
--
2.39.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCHv2 2/4] grub-btrfsd: Use generic volume_fs_type function for FS detection
2024-03-27 19:39 [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Stefan Schantl
@ 2024-03-27 19:39 ` Stefan Schantl
2024-03-28 10:32 ` Michael Tremer
2024-03-27 19:39 ` [PATCHv2 3/4] grub-btrfsd: Adjust displayed starting message Stefan Schantl
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Stefan Schantl @ 2024-03-27 19:39 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1145 bytes --]
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/initscripts/system/grub-btrfsd | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
diff --git a/src/initscripts/system/grub-btrfsd b/src/initscripts/system/grub-btrfsd
index dc5e32ad4..90582b1b1 100644
--- a/src/initscripts/system/grub-btrfsd
+++ b/src/initscripts/system/grub-btrfsd
@@ -25,21 +25,18 @@
SNAPSHOTDIR="/.snapshots"
PIDFILE="/run/grub-btrfsd.pid"
-root_is_btrfs() {
- [ "$(stat -f --format="%T" /)" == "btrfs" ] || return 1
-
- return 0
-}
-
case "$1" in
start)
- root_is_btrfs || exit 0
+ root_fs_type=$(volume_fs_type "/")
- boot_mesg "Starting Grub/Btrfs snapshot manager..."
- loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
+ case "$root_fs_type" in
+ btrfs)
- # Store the gained PID to the defined pidfile
- echo "$!" > "$PIDFILE"
+ boot_mesg "Starting Grub/Btrfs snapshot manager..."
+ loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
+ echo "$!" > "$PIDFILE"
+ ;;
+ esac
;;
stop)
--
2.39.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCHv2 2/4] grub-btrfsd: Use generic volume_fs_type function for FS detection
2024-03-27 19:39 ` [PATCHv2 2/4] grub-btrfsd: Use generic volume_fs_type function for FS detection Stefan Schantl
@ 2024-03-28 10:32 ` Michael Tremer
0 siblings, 0 replies; 8+ messages in thread
From: Michael Tremer @ 2024-03-28 10:32 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1342 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 27 Mar 2024, at 19:39, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> src/initscripts/system/grub-btrfsd | 19 ++++++++-----------
> 1 file changed, 8 insertions(+), 11 deletions(-)
>
> diff --git a/src/initscripts/system/grub-btrfsd b/src/initscripts/system/grub-btrfsd
> index dc5e32ad4..90582b1b1 100644
> --- a/src/initscripts/system/grub-btrfsd
> +++ b/src/initscripts/system/grub-btrfsd
> @@ -25,21 +25,18 @@
> SNAPSHOTDIR="/.snapshots"
> PIDFILE="/run/grub-btrfsd.pid"
>
> -root_is_btrfs() {
> - [ "$(stat -f --format="%T" /)" == "btrfs" ] || return 1
> -
> - return 0
> -}
> -
> case "$1" in
> start)
> - root_is_btrfs || exit 0
> + root_fs_type=$(volume_fs_type "/")
>
> - boot_mesg "Starting Grub/Btrfs snapshot manager..."
> - loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
> + case "$root_fs_type" in
> + btrfs)
>
> - # Store the gained PID to the defined pidfile
> - echo "$!" > "$PIDFILE"
> + boot_mesg "Starting Grub/Btrfs snapshot manager..."
> + loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
> + echo "$!" > "$PIDFILE"
> + ;;
> + esac
> ;;
>
> stop)
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCHv2 3/4] grub-btrfsd: Adjust displayed starting message
2024-03-27 19:39 [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Stefan Schantl
2024-03-27 19:39 ` [PATCHv2 2/4] grub-btrfsd: Use generic volume_fs_type function for FS detection Stefan Schantl
@ 2024-03-27 19:39 ` Stefan Schantl
2024-03-28 10:31 ` Michael Tremer
2024-03-27 19:39 ` [PATCHv2 4/4] grub-btrfsd: Drop redundant used PIDFILE mechanism Stefan Schantl
2024-03-28 10:31 ` [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Michael Tremer
3 siblings, 1 reply; 8+ messages in thread
From: Stefan Schantl @ 2024-03-27 19:39 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 675 bytes --]
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/initscripts/system/grub-btrfsd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/initscripts/system/grub-btrfsd b/src/initscripts/system/grub-btrfsd
index 90582b1b1..26760f9be 100644
--- a/src/initscripts/system/grub-btrfsd
+++ b/src/initscripts/system/grub-btrfsd
@@ -32,7 +32,7 @@ case "$1" in
case "$root_fs_type" in
btrfs)
- boot_mesg "Starting Grub/Btrfs snapshot manager..."
+ boot_mesg "Starting GRUB/Btrfs Daemon..."
loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
echo "$!" > "$PIDFILE"
;;
--
2.39.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCHv2 3/4] grub-btrfsd: Adjust displayed starting message
2024-03-27 19:39 ` [PATCHv2 3/4] grub-btrfsd: Adjust displayed starting message Stefan Schantl
@ 2024-03-28 10:31 ` Michael Tremer
0 siblings, 0 replies; 8+ messages in thread
From: Michael Tremer @ 2024-03-28 10:31 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 835 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 27 Mar 2024, at 19:39, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> src/initscripts/system/grub-btrfsd | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/initscripts/system/grub-btrfsd b/src/initscripts/system/grub-btrfsd
> index 90582b1b1..26760f9be 100644
> --- a/src/initscripts/system/grub-btrfsd
> +++ b/src/initscripts/system/grub-btrfsd
> @@ -32,7 +32,7 @@ case "$1" in
> case "$root_fs_type" in
> btrfs)
>
> - boot_mesg "Starting Grub/Btrfs snapshot manager..."
> + boot_mesg "Starting GRUB/Btrfs Daemon..."
> loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
> echo "$!" > "$PIDFILE"
> ;;
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCHv2 4/4] grub-btrfsd: Drop redundant used PIDFILE mechanism
2024-03-27 19:39 [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Stefan Schantl
2024-03-27 19:39 ` [PATCHv2 2/4] grub-btrfsd: Use generic volume_fs_type function for FS detection Stefan Schantl
2024-03-27 19:39 ` [PATCHv2 3/4] grub-btrfsd: Adjust displayed starting message Stefan Schantl
@ 2024-03-27 19:39 ` Stefan Schantl
2024-03-28 10:31 ` Michael Tremer
2024-03-28 10:31 ` [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Michael Tremer
3 siblings, 1 reply; 8+ messages in thread
From: Stefan Schantl @ 2024-03-27 19:39 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 918 bytes --]
This case is already covered by the PID mechanism of the used functions
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/initscripts/system/grub-btrfsd | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/initscripts/system/grub-btrfsd b/src/initscripts/system/grub-btrfsd
index 26760f9be..49073a807 100644
--- a/src/initscripts/system/grub-btrfsd
+++ b/src/initscripts/system/grub-btrfsd
@@ -33,16 +33,14 @@ case "$1" in
btrfs)
boot_mesg "Starting GRUB/Btrfs Daemon..."
- loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
- echo "$!" > "$PIDFILE"
+ loadproc -b /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
;;
esac
;;
stop)
boot_mesg "Stopping grub-btrfsd..."
- killproc -p "$PIDFILE" /usr/bin/grub-btrfsd
- sleep 1;
+ killproc /usr/bin/grub-btrfsd
;;
restart)
--
2.39.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCHv2 4/4] grub-btrfsd: Drop redundant used PIDFILE mechanism
2024-03-27 19:39 ` [PATCHv2 4/4] grub-btrfsd: Drop redundant used PIDFILE mechanism Stefan Schantl
@ 2024-03-28 10:31 ` Michael Tremer
0 siblings, 0 replies; 8+ messages in thread
From: Michael Tremer @ 2024-03-28 10:31 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1088 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 27 Mar 2024, at 19:39, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> This case is already covered by the PID mechanism of the used functions
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> src/initscripts/system/grub-btrfsd | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/src/initscripts/system/grub-btrfsd b/src/initscripts/system/grub-btrfsd
> index 26760f9be..49073a807 100644
> --- a/src/initscripts/system/grub-btrfsd
> +++ b/src/initscripts/system/grub-btrfsd
> @@ -33,16 +33,14 @@ case "$1" in
> btrfs)
>
> boot_mesg "Starting GRUB/Btrfs Daemon..."
> - loadproc -b -p "$PIDFILE" /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
> - echo "$!" > "$PIDFILE"
> + loadproc -b /usr/bin/grub-btrfsd --syslog "$SNAPSHOTDIR"
> ;;
> esac
> ;;
>
> stop)
> boot_mesg "Stopping grub-btrfsd..."
> - killproc -p "$PIDFILE" /usr/bin/grub-btrfsd
> - sleep 1;
> + killproc /usr/bin/grub-btrfsd
> ;;
>
> restart)
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume
2024-03-27 19:39 [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Stefan Schantl
` (2 preceding siblings ...)
2024-03-27 19:39 ` [PATCHv2 4/4] grub-btrfsd: Drop redundant used PIDFILE mechanism Stefan Schantl
@ 2024-03-28 10:31 ` Michael Tremer
3 siblings, 0 replies; 8+ messages in thread
From: Michael Tremer @ 2024-03-28 10:31 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 744 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 27 Mar 2024, at 19:39, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> src/initscripts/system/functions | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/src/initscripts/system/functions b/src/initscripts/system/functions
> index 5a26aef45..b610143ab 100644
> --- a/src/initscripts/system/functions
> +++ b/src/initscripts/system/functions
> @@ -883,3 +883,11 @@ running_on_oci() {
> # We are not running on OCI
> return 1
> }
> +
> +volume_fs_type() {
> + if [ ! -d "${1}" ]; then
> + return
> + fi
> +
> + stat -f --format="%T" ${1}
> +}
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-03-28 10:32 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-27 19:39 [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Stefan Schantl
2024-03-27 19:39 ` [PATCHv2 2/4] grub-btrfsd: Use generic volume_fs_type function for FS detection Stefan Schantl
2024-03-28 10:32 ` Michael Tremer
2024-03-27 19:39 ` [PATCHv2 3/4] grub-btrfsd: Adjust displayed starting message Stefan Schantl
2024-03-28 10:31 ` Michael Tremer
2024-03-27 19:39 ` [PATCHv2 4/4] grub-btrfsd: Drop redundant used PIDFILE mechanism Stefan Schantl
2024-03-28 10:31 ` Michael Tremer
2024-03-28 10:31 ` [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox