mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-16 05:11:31 +00:00
Remove quotes in <<'EOF' constructs to limit the diff with the -touch version
of the hook.
This commit is contained in:
parent
a0c319884d
commit
94a5c45de1
@ -14,7 +14,7 @@ gshadow_hash=$(set -- $(md5sum /etc/gshadow) && echo $1)
|
|||||||
|
|
||||||
# /etc/passwd
|
# /etc/passwd
|
||||||
if [ "$passwd_bootstrap" = "$passwd_hash" ]; then
|
if [ "$passwd_bootstrap" = "$passwd_hash" ]; then
|
||||||
cat > /etc/passwd <<'EOF'
|
cat > /etc/passwd <<EOF
|
||||||
root:x:0:0:root:/root:/bin/bash
|
root:x:0:0:root:/root:/bin/bash
|
||||||
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
|
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
|
||||||
bin:x:2:2:bin:/bin:/usr/sbin/nologin
|
bin:x:2:2:bin:/bin:/usr/sbin/nologin
|
||||||
@ -48,7 +48,7 @@ fi
|
|||||||
|
|
||||||
# /etc/shadow
|
# /etc/shadow
|
||||||
if [ "$shadow_bootstrap" = "$shadow_hash" ]; then
|
if [ "$shadow_bootstrap" = "$shadow_hash" ]; then
|
||||||
cat > /etc/shadow <<'EOF'
|
cat > /etc/shadow <<EOF
|
||||||
root:*:16329:0:99999:7:::
|
root:*:16329:0:99999:7:::
|
||||||
daemon:*:16329:0:99999:7:::
|
daemon:*:16329:0:99999:7:::
|
||||||
bin:*:16329:0:99999:7:::
|
bin:*:16329:0:99999:7:::
|
||||||
@ -82,7 +82,7 @@ fi
|
|||||||
|
|
||||||
# /etc/group
|
# /etc/group
|
||||||
if [ "$group_bootstrap" = "$group_hash" ]; then
|
if [ "$group_bootstrap" = "$group_hash" ]; then
|
||||||
cat > /etc/group <<'EOF'
|
cat > /etc/group <<EOF
|
||||||
root:x:0:
|
root:x:0:
|
||||||
daemon:x:1:
|
daemon:x:1:
|
||||||
bin:x:2:
|
bin:x:2:
|
||||||
@ -141,7 +141,7 @@ fi
|
|||||||
|
|
||||||
# /etc/gshadow
|
# /etc/gshadow
|
||||||
if [ "$gshadow_bootstrap" = "$gshadow_hash" ]; then
|
if [ "$gshadow_bootstrap" = "$gshadow_hash" ]; then
|
||||||
cat > /etc/gshadow <<'EOF'
|
cat > /etc/gshadow <<EOF
|
||||||
root:*::
|
root:*::
|
||||||
daemon:*::
|
daemon:*::
|
||||||
bin:*::
|
bin:*::
|
||||||
|
Loading…
x
Reference in New Issue
Block a user