source: process-scripts.sh@ 71e8c2b

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since 71e8c2b was 71e8c2b, checked in by Krejzi <krejzi@…>, 11 years ago

Rename systemd-units to network-scripts.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10279 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 479 bytes
Line 
1#!/bin/bash
2
3# Boot scripts
4for s in network-scripts/lfs/lib/services/* \
5 network-scripts/lfs/sbin/* \
6 network-scripts/lfs/tmpfiles/* \
7 network-scripts/lfs/units/*
8do
9 script=$(basename $s)
10
11 # Skip directories
12 [ $script == 'network-devices' ] && continue
13
14 sed -e 's/\&/\&amp\;/g' -e 's/</\&lt\;/g' -e 's/>/\&gt\;/g' \
15 -e "s/'/\&apos\;/g" -e 's/"/\&quot\;/g' -e 's/\t/ /g' \
16 $s > appendices/${script}.script
17done
Note: See TracBrowser for help on using the repository browser.