diff options
| author | Simon Rettberg | 2024-11-22 10:46:34 +0100 |
|---|---|---|
| committer | Simon Rettberg | 2024-11-22 10:46:34 +0100 |
| commit | 843c5af505f078ea07302b427d341fbfe3ff71dc (patch) | |
| tree | c2650172dc1552e26f104573a221b1986ee92f8e /core/modules | |
| parent | [kiosk-firefox] Fix copy/paste error in preload script (diff) | |
| download | mltk-843c5af505f078ea07302b427d341fbfe3ff71dc.tar.gz mltk-843c5af505f078ea07302b427d341fbfe3ff71dc.tar.xz mltk-843c5af505f078ea07302b427d341fbfe3ff71dc.zip | |
[kiosk-chromium] Preload: Simply use cat
Diffstat (limited to 'core/modules')
| -rw-r--r-- | core/modules/kiosk-chromium/data/opt/openslx/scripts/systemd-setup_kiosk.d/00-preload-chromium | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/kiosk-chromium/data/opt/openslx/scripts/systemd-setup_kiosk.d/00-preload-chromium b/core/modules/kiosk-chromium/data/opt/openslx/scripts/systemd-setup_kiosk.d/00-preload-chromium index 981f3884..26e83b1b 100644 --- a/core/modules/kiosk-chromium/data/opt/openslx/scripts/systemd-setup_kiosk.d/00-preload-chromium +++ b/core/modules/kiosk-chromium/data/opt/openslx/scripts/systemd-setup_kiosk.d/00-preload-chromium @@ -7,6 +7,6 @@ . /opt/openslx/config if [ "${SLX_BROWSER//chromium/}" != "$SLX_BROWSER" ]; then - dd if=/usr/lib/chromium-browser/chromium-browser of=/dev/null bs=128k &> /dev/null & - dd if=/usr/lib/chromium/chromium of=/dev/null bs=128k &> /dev/null & + cat /usr/lib/chromium-browser/chromium-browser &> /dev/null & + cat /usr/lib/chromium/chromium &> /dev/null & fi |
