summaryrefslogtreecommitdiffstats
path: root/dracut/systemv/module-setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dracut/systemv/module-setup.sh')
-rwxr-xr-xdracut/systemv/module-setup.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/dracut/systemv/module-setup.sh b/dracut/systemv/module-setup.sh
deleted file mode 100755
index def4f70..0000000
--- a/dracut/systemv/module-setup.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#############################################################################
-##
-## Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies).
-##
-## This file is part of the Qt Enterprise Embedded Scripts of the Qt
-## framework.
-##
-## $QT_BEGIN_LICENSE$
-## Commercial License Usage Only
-## Licensees holding valid commercial Qt license agreements with Digia
-## with an appropriate addendum covering the Qt Enterprise Embedded Scripts,
-## may use this file in accordance with the terms contained in said license
-## agreement.
-##
-## For further information use the contact form at
-## http://www.qt.io/contact-us.
-##
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
-check() {
- if [ -x /usr/sbin/ostree-prepare-root ]; then
- return 255
- fi
-
- return 1
-}
-
-depends() {
- return 0
-}
-
-install() {
- inst_hook cleanup 20 "$moddir/prepare-root.sh"
- inst_multiple ostree-prepare-root
-}