Seed code for image-provision
[ta/image-provision.git] / dracut / modules / 00readfloppyconf / module-setup.sh
1 #!/bin/bash
2
3 # Copyright 2019 Nokia
4
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
18 # ex: ts=8 sw=4 sts=4 et filetype=sh
19
20 check() {
21     # do not add this module by default
22     return 255
23 }
24
25 install() {
26     inst_hook pre-pivot 51 "$moddir/copy_floppy_config.sh"
27 }
28