kdump-steamos: swap underscore for hyphen in filenames
Currently half of the files are hyphenated, while the rest use underscore. Just move everything to hyphens. Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
committed by
Guilherme G. Piccoli
parent
f2df3c6365
commit
4d3a810bab
8
Makefile
8
Makefile
@ -16,9 +16,9 @@ install: all
|
|||||||
install -D -m0644 kdump.etc $(DESTDIR)$(sysconfdir)/default/kdump
|
install -D -m0644 kdump.etc $(DESTDIR)$(sysconfdir)/default/kdump
|
||||||
install -D -m0644 kdump-steamos.service $(DESTDIR)$(systemdunitsdir)/kdump-steamos.service
|
install -D -m0644 kdump-steamos.service $(DESTDIR)$(systemdunitsdir)/kdump-steamos.service
|
||||||
install -D -m0644 20-kdump-steamos.conf $(DESTDIR)$(sysctldir)/20-kdump-steamos.conf
|
install -D -m0644 20-kdump-steamos.conf $(DESTDIR)$(sysctldir)/20-kdump-steamos.conf
|
||||||
install -D -m0755 kdump_collect.sh $(DESTDIR)$(dracutmodulesdir)/55kdump/kdump_collect.sh
|
install -D -m0755 kdump-collect.sh $(DESTDIR)$(dracutmodulesdir)/55kdump/kdump-collect.sh
|
||||||
install -D -m0755 module-setup.sh $(DESTDIR)$(dracutmodulesdir)/55kdump/module-setup.sh
|
install -D -m0755 module-setup.sh $(DESTDIR)$(dracutmodulesdir)/55kdump/module-setup.sh
|
||||||
install -D -m0644 README.md $(DESTDIR)$(dracutmodulesdir)/55kdump/README
|
install -D -m0644 README.md $(DESTDIR)$(dracutmodulesdir)/55kdump/README
|
||||||
install -D -m0755 kdump_load.sh $(DESTDIR)$(libdir)/kdump/kdump_load.sh
|
install -D -m0755 kdump-load.sh $(DESTDIR)$(libdir)/kdump/kdump-load.sh
|
||||||
install -D -m0755 submit_report.sh $(DESTDIR)$(libdir)/kdump/submit_report.sh
|
install -D -m0755 submit-report.sh $(DESTDIR)$(libdir)/kdump/submit-report.sh
|
||||||
install -D -m0755 submitter_load.sh $(DESTDIR)$(libdir)/kdump/submitter_load.sh
|
install -D -m0755 submitter-load.sh $(DESTDIR)$(libdir)/kdump/submitter-load.sh
|
||||||
|
|||||||
@ -9,8 +9,8 @@ Description=SteamOS kdump loader boot-time service
|
|||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
StandardOutput=journal
|
StandardOutput=journal
|
||||||
ExecStartPre=/usr/lib/kdump/kdump_load.sh
|
ExecStartPre=/usr/lib/kdump/kdump-load.sh
|
||||||
ExecStart=/usr/lib/kdump/submitter_load.sh
|
ExecStart=/usr/lib/kdump/submitter-load.sh
|
||||||
RemainAfterExit=yes
|
RemainAfterExit=yes
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
# Configuration settings for SteamOS kdump. After _any_ change in this
|
# Configuration settings for SteamOS kdump. After _any_ change in this
|
||||||
# file, it's required to create the kdump minimal initramfs by running:
|
# file, it's required to create the kdump minimal initramfs by running:
|
||||||
# /usr/lib/kdump/kdump_load.sh initrd
|
# /usr/lib/kdump/kdump-load.sh initrd
|
||||||
#
|
#
|
||||||
|
|
||||||
# Mount-related options - the DEVNODE must exist and be available during the
|
# Mount-related options - the DEVNODE must exist and be available during the
|
||||||
|
|||||||
@ -34,5 +34,5 @@ install() {
|
|||||||
cp -LR --preserve=all /usr/lib/kdump/* $initdir/usr/lib/kdump/
|
cp -LR --preserve=all /usr/lib/kdump/* $initdir/usr/lib/kdump/
|
||||||
cp -LR --preserve=all /etc/default/kdump $initdir/usr/lib/kdump/kdump.etc
|
cp -LR --preserve=all /etc/default/kdump $initdir/usr/lib/kdump/kdump.etc
|
||||||
|
|
||||||
inst_hook pre-mount 01 "$moddir/kdump_collect.sh"
|
inst_hook pre-mount 01 "$moddir/kdump-collect.sh"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,5 +8,5 @@
|
|||||||
# it's invoked by systemd, basically it just loads a detached
|
# it's invoked by systemd, basically it just loads a detached
|
||||||
# process and exits successfuly, in order to prevent boot hangs.
|
# process and exits successfuly, in order to prevent boot hangs.
|
||||||
|
|
||||||
/usr/lib/kdump/submit_report.sh & disown
|
/usr/lib/kdump/submit-report.sh & disown
|
||||||
exit 0
|
exit 0
|
||||||
Reference in New Issue
Block a user