summaryrefslogtreecommitdiffstats
path: root/testing/udev/udev-postmount.initd
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-02-02 16:03:06 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-02-02 16:03:06 +0000
commit9ad548df8aa2a860ca311453ed3d6a98962f32f5 (patch)
tree09dec888ccfdf1447ba13e62c50d9291176b07e3 /testing/udev/udev-postmount.initd
parent96813504f80856d8d85b390207621e5cbba64a85 (diff)
downloadaports-9ad548df8aa2a860ca311453ed3d6a98962f32f5.tar.bz2
aports-9ad548df8aa2a860ca311453ed3d6a98962f32f5.tar.xz
testing/*: remove from stable branch
Diffstat (limited to 'testing/udev/udev-postmount.initd')
-rwxr-xr-xtesting/udev/udev-postmount.initd31
1 files changed, 0 insertions, 31 deletions
diff --git a/testing/udev/udev-postmount.initd b/testing/udev/udev-postmount.initd
deleted file mode 100755
index 96beb845..00000000
--- a/testing/udev/udev-postmount.initd
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/files/136/udev-postmount.initd,v 1.3 2009/02/23 16:30:53 zzam Exp $
-
-depend() {
- need localmount
-}
-
-dir_writeable()
-{
- mkdir "$1"/.test.$$ 2>/dev/null && rmdir "$1"/.test.$$
-}
-
-start() {
- # check if this system uses udev
- [ -d /dev/.udev/ ] || return 0
-
- # only continue if rules-directory is writable
- dir_writeable /etc/udev/rules.d || return 0
-
- # store persistent-rules that got created while booting
- # when / was still read-only
- /lib/udev/move_tmp_persistent_rules.sh
-}
-
-stop() {
- :
-}
-
-# vim:ts=4