summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2008-03-06 11:39:35 (GMT)
committerColin Watson <cjwatson@debian.org>2008-03-06 11:39:35 (GMT)
commitd1dad6a6c16ef016565d9a2ce7a0397e469b0ab8 (patch)
tree3725ddbbccd70896f44b849db2a9bfc1244bab88 /scripts
parent4434a5e47ad1b53cec50068d60b19454ef8b96dc (diff)
downloaddebootstrap-d1dad6a6c16ef016565d9a2ce7a0397e469b0ab8.zip
debootstrap-d1dad6a6c16ef016565d9a2ce7a0397e469b0ab8.tar.gz
debootstrap-d1dad6a6c16ef016565d9a2ce7a0397e469b0ab8.tar.bz2
* Use 'chown 0:0' in all scripts rather than deprecated 'chown 0.0'.
r51751
Diffstat (limited to 'scripts')
-rw-r--r--scripts/debian/potato2
-rw-r--r--scripts/debian/sarge2
-rw-r--r--scripts/debian/sarge.buildd2
-rw-r--r--scripts/debian/sarge.fakechroot2
-rw-r--r--scripts/debian/sid2
-rw-r--r--scripts/debian/woody2
-rw-r--r--scripts/debian/woody.buildd2
-rw-r--r--scripts/ubuntu/breezy2
-rw-r--r--scripts/ubuntu/dapper2
-rw-r--r--scripts/ubuntu/edgy2
-rw-r--r--scripts/ubuntu/feisty2
-rw-r--r--scripts/ubuntu/gutsy2
-rw-r--r--scripts/ubuntu/hoary2
-rw-r--r--scripts/ubuntu/hoary.buildd2
-rw-r--r--scripts/ubuntu/warty2
-rw-r--r--scripts/ubuntu/warty.buildd2
16 files changed, 16 insertions, 16 deletions
diff --git a/scripts/debian/potato b/scripts/debian/potato
index 1bcf8df..654ea32 100644
--- a/scripts/debian/potato
+++ b/scripts/debian/potato
@@ -34,7 +34,7 @@ first_stage_install () {
setup_etc
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
setup_devices
diff --git a/scripts/debian/sarge b/scripts/debian/sarge
index d15b02f..245ace5 100644
--- a/scripts/debian/sarge
+++ b/scripts/debian/sarge
@@ -101,7 +101,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/debian/sarge.buildd b/scripts/debian/sarge.buildd
index d8d4035..34b6fa2 100644
--- a/scripts/debian/sarge.buildd
+++ b/scripts/debian/sarge.buildd
@@ -63,7 +63,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/debian/sarge.fakechroot b/scripts/debian/sarge.fakechroot
index a2eed01..7ba9d59 100644
--- a/scripts/debian/sarge.fakechroot
+++ b/scripts/debian/sarge.fakechroot
@@ -68,7 +68,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices_fakechroot
diff --git a/scripts/debian/sid b/scripts/debian/sid
index 584ee41..8685632 100644
--- a/scripts/debian/sid
+++ b/scripts/debian/sid
@@ -43,7 +43,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
if [ -x "$TARGET/usr/bin/md5sum.textutils" ] && [ \! -e "$TARGET/usr/bin/md5sum" ]; then
diff --git a/scripts/debian/woody b/scripts/debian/woody
index 257a0ad..053daab 100644
--- a/scripts/debian/woody
+++ b/scripts/debian/woody
@@ -87,7 +87,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/debian/woody.buildd b/scripts/debian/woody.buildd
index 06ac21f..d07d454 100644
--- a/scripts/debian/woody.buildd
+++ b/scripts/debian/woody.buildd
@@ -63,7 +63,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/ubuntu/breezy b/scripts/ubuntu/breezy
index 9ad1743..e5e575d 100644
--- a/scripts/ubuntu/breezy
+++ b/scripts/ubuntu/breezy
@@ -39,7 +39,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/ubuntu/dapper b/scripts/ubuntu/dapper
index 808f508..464bb44 100644
--- a/scripts/ubuntu/dapper
+++ b/scripts/ubuntu/dapper
@@ -46,7 +46,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/ubuntu/edgy b/scripts/ubuntu/edgy
index 0237487..0e8cd5d 100644
--- a/scripts/ubuntu/edgy
+++ b/scripts/ubuntu/edgy
@@ -52,7 +52,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
if doing_variant fakechroot; then
diff --git a/scripts/ubuntu/feisty b/scripts/ubuntu/feisty
index 1cfce53..6b73f5b 100644
--- a/scripts/ubuntu/feisty
+++ b/scripts/ubuntu/feisty
@@ -52,7 +52,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
if doing_variant fakechroot; then
diff --git a/scripts/ubuntu/gutsy b/scripts/ubuntu/gutsy
index 9bd08dc..00b0836 100644
--- a/scripts/ubuntu/gutsy
+++ b/scripts/ubuntu/gutsy
@@ -42,7 +42,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
if doing_variant fakechroot; then
diff --git a/scripts/ubuntu/hoary b/scripts/ubuntu/hoary
index 38e5cad..5175ccb 100644
--- a/scripts/ubuntu/hoary
+++ b/scripts/ubuntu/hoary
@@ -60,7 +60,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/ubuntu/hoary.buildd b/scripts/ubuntu/hoary.buildd
index 3b61904..bc8c5f8 100644
--- a/scripts/ubuntu/hoary.buildd
+++ b/scripts/ubuntu/hoary.buildd
@@ -57,7 +57,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/ubuntu/warty b/scripts/ubuntu/warty
index f48cba2..f040185 100644
--- a/scripts/ubuntu/warty
+++ b/scripts/ubuntu/warty
@@ -50,7 +50,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices
diff --git a/scripts/ubuntu/warty.buildd b/scripts/ubuntu/warty.buildd
index f964b94..c46ed5c 100644
--- a/scripts/ubuntu/warty.buildd
+++ b/scripts/ubuntu/warty.buildd
@@ -57,7 +57,7 @@ first_stage_install () {
setup_etc
if [ ! -e "$TARGET/etc/fstab" ]; then
echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
- chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
+ chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
fi
setup_devices