Changeset 8172859 in clfs-embedded for bootscripts/clfs/rc.d/shutdown
- Timestamp:
- Sep 7, 2009, 11:19:14 AM (15 years ago)
- Branches:
- master
- Children:
- 2e856a4
- Parents:
- b71d8ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bootscripts/clfs/rc.d/shutdown
rb71d8ca r8172859 20 20 done 21 21 22 echo -n "Syncing hardware clock to system clock:" 23 hwclock --systohc --utc 24 check_status 22 if [ -x /sbin/hwclock ]; then 23 echo -n "Syncing hardware clock to system clock:" 24 hwclock --systohc --utc 25 check_status 26 fi 25 27 26 echo -n "Disabling swap space: " 27 swapoff -a 28 check_status 28 if [ -x /sbin/swapoff ]; then 29 echo -n "Disabling swap space: " 30 swapoff -a 31 check_status 32 fi 29 33 30 34 echo -n "Syncing all filesystems: "
Note:
See TracChangeset
for help on using the changeset viewer.