diff options
Diffstat (limited to 'services')
-rw-r--r-- | services/Makemodule.am | 5 | ||||
-rw-r--r-- | services/rootusr.in | 5 | ||||
-rw-r--r-- | services/tmpfsrun | 11 | ||||
-rw-r--r-- | services/tmpfsvar.in | 12 |
4 files changed, 0 insertions, 33 deletions
diff --git a/services/Makemodule.am b/services/Makemodule.am index 3c714a6..7187aab 100644 --- a/services/Makemodule.am +++ b/services/Makemodule.am @@ -6,11 +6,6 @@ init_DATA += services/sigterm services/sync services/devfs init_DATA += services/sysfs services/procfs services/tmpfs init_DATA += services/vfs -if PYGOSCFG -init_DATA += services/rootusr services/tmpfsrun services/tmpfsvar -endif - EXTRA_DIST += services/sysinit services/vfs services/agetty services/hostname EXTRA_DIST += services/hwclock services/loopback services/reboot EXTRA_DIST += services/shutdown services/sync services/sysctl services/tmpfs -EXTRA_DIST += services/tmpfsrun diff --git a/services/rootusr.in b/services/rootusr.in deleted file mode 100644 index fb173db..0000000 --- a/services/rootusr.in +++ /dev/null @@ -1,5 +0,0 @@ -description "mount /root" -type wait -target boot -before vfs -exec "@SCRIPTDIR@/overlay.sh" root /root diff --git a/services/tmpfsrun b/services/tmpfsrun deleted file mode 100644 index 07dbd0a..0000000 --- a/services/tmpfsrun +++ /dev/null @@ -1,11 +0,0 @@ -description "mount /run" -type wait -target boot -before vfs -after tmpfsvar -exec { - mount -t tmpfs none /run - mkdir /run/lock -m 0755 - ln -s /run /var/run - ln -s /run/lock /var/lock -} diff --git a/services/tmpfsvar.in b/services/tmpfsvar.in deleted file mode 100644 index 5f45ecd..0000000 --- a/services/tmpfsvar.in +++ /dev/null @@ -1,12 +0,0 @@ -description "mount /var" -type wait -target boot -before vfs -exec { - mount -t tmpfs none /var - mkdir /var/log -m 0755 - mkdir /var/spool -m 0755 - mkdir /var/lib -m 0755 - mkdir /var/tmp -m 0755 - "@SCRIPTDIR@/overlay.sh" var_lib /var/lib -} |