Magellan Linux

Annotation of /trunk/initscripts/sysvinit/rc/cleanfs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1360 - (hide annotations) (download)
Sat Jun 4 21:59:16 2011 UTC (12 years, 11 months ago) by niro
File size: 1108 byte(s)
-support start/stop mechanism
1 niro 1360 #!/bin/sh
2     # $Header: /home/cvsd/magellan-cvs/magellan-src/busybox-initscripts/rc/cleanfs,v 1.2 2008-06-10 22:23:30 niro Exp $
3 niro 2
4     #%rlevels: 7:s
5     #%start: 50
6     #%stop:
7    
8     #deps
9     #%needs:
10     #%before:
11     #%after:
12    
13 niro 781 source /etc/conf.d/rc
14     source ${rc_functions}
15 niro 2
16 niro 1360 case "$1" in
17     start)
18     for dir in /tmp /var/run /var/lock
19     do
20     rc_print "Removing tmp files in ${dir}/ ..."
21     for file in $(find ${dir} -type f)
22     do
23     [[ $(basename ${file}) = .keep ]] && continue
24     rm -f ${file}
25     done
26     for subdir in $(find ${dir} -mindepth 1 -type d)
27     do
28     [[ -f ${subdir}/.keep ]] && continue
29     rm -r ${subdir}
30     done
31     evaluate_retval
32     done
33 niro 2
34 niro 1360 rc_print "Creating new /var/run/utmp ..."
35     touch /var/run/utmp && chmod 644 /var/run/utmp
36     evaluate_retval
37 niro 2
38 niro 1360 rc_print "Creating new /var/run/wtmp ..."
39     touch /var/log/wtmp && chmod 644 /var/log/wtmp
40     evaluate_retval
41 niro 47
42 niro 1360 rc_print "Removing possible /etc/nologin /fastboot and /forcefsck ..."
43     rm -f /etc/nologin /fastboot /forcefsck
44     evaluate_retval
45 niro 2
46 niro 1360 update_svcstatus $1
47     splash svc_started "$(basename $0)" 0
48     ;;
49    
50     *)
51     rc_echo "Usage: $0 {start}"
52     exit 1
53     ;;
54     esac

Properties

Name Value
svn:executable *