summaryrefslogtreecommitdiff
path: root/dh_installdebconf
diff options
context:
space:
mode:
Diffstat (limited to 'dh_installdebconf')
-rwxr-xr-xdh_installdebconf6
1 files changed, 3 insertions, 3 deletions
diff --git a/dh_installdebconf b/dh_installdebconf
index 82d69d01..ccf3074a 100755
--- a/dh_installdebconf
+++ b/dh_installdebconf
@@ -11,11 +11,11 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
$templates=pkgfile($PACKAGE,"templates");
if (! -d "$TMP/DEBIAN") {
- doit("install","-o","root","-g","root","-d","$TMP/DEBIAN");
+ doit("install","-o",0,"-g",0,"-d","$TMP/DEBIAN");
}
if ($config ne '') {
- doit("install", "-o", "root", "-g", "root", "-m", 755, "-p",
+ doit("install", "-o", 0, "-g", 0, "-m", 755, "-p",
$config, "$TMP/DEBIAN/config");
}
@@ -28,7 +28,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
chown 0, 0, "$TMP/DEBIAN/templates";
}
else {
- doit("install", "-o", "root", "-g", "root", "-m", 644, "-p",
+ doit("install", "-o", 0, "-g", 0, "-m", 644, "-p",
$templates, "$TMP/DEBIAN/templates");
}
}