|
Lines 33-39
check() {
Link Here
|
| 33 |
# called by dracut |
33 |
# called by dracut |
| 34 |
depends() { |
34 |
depends() { |
| 35 |
# We depend on network modules being loaded |
35 |
# We depend on network modules being loaded |
| 36 |
echo network |
36 |
echo network systemd-sysusers |
| 37 |
} |
37 |
} |
| 38 |
|
38 |
|
| 39 |
# called by dracut |
39 |
# called by dracut |
|
Lines 81-86
install() {
Link Here
|
| 81 |
inst_multiple -o /etc/services /etc/nsswitch.conf /etc/rpc /etc/protocols |
81 |
inst_multiple -o /etc/services /etc/nsswitch.conf /etc/rpc /etc/protocols |
| 82 |
inst_multiple -o /usr/etc/services /usr/etc/nsswitch.conf /usr/etc/rpc /usr/etc/protocols |
82 |
inst_multiple -o /usr/etc/services /usr/etc/nsswitch.conf /usr/etc/rpc /usr/etc/protocols |
| 83 |
|
83 |
|
|
|
84 |
# SUSE specific |
| 85 |
inst_simple "$sysusers"/statd-user.conf |
| 86 |
inst_simple "$moddir/dracut-nfs-tmpfiles.conf" "$tmpfilesdir/dracut-nfs-tmpfiles.conf" |
| 87 |
|
| 84 |
if [[ $hostonly_cmdline == "yes" ]]; then |
88 |
if [[ $hostonly_cmdline == "yes" ]]; then |
| 85 |
local _netconf |
89 |
local _netconf |
| 86 |
_netconf="$(cmdline)" |
90 |
_netconf="$(cmdline)" |
| 87 |
- |
|
|