Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nfs-utils-debian11
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
702
Provoz
nfs-utils-debian11
Commits
0e7caa05
Commit
0e7caa05
authored
1 year ago
by
Pavel Vondruska
Browse files
Options
Downloads
Patches
Plain Diff
dalsi ZS patche
parent
df47a6f7
No related branches found
No related tags found
No related merge requests found
Pipeline
#5011
passed
1 year ago
Stage: test
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
make.sh
+5
-2
5 additions, 2 deletions
make.sh
zs5-add-missing-params.patch
+15
-0
15 additions, 0 deletions
zs5-add-missing-params.patch
zs6-krb-rc-param.patch
+9
-0
9 additions, 0 deletions
zs6-krb-rc-param.patch
zs9-idmap-verbosity.patch
+33
-0
33 additions, 0 deletions
zs9-idmap-verbosity.patch
with
62 additions
and
2 deletions
make.sh
+
5
−
2
View file @
0e7caa05
...
@@ -39,9 +39,12 @@ zs1-n-option-impl
...
@@ -39,9 +39,12 @@ zs1-n-option-impl
zs2-idmap-init
zs2-idmap-init
zs3-keyctl-order
zs3-keyctl-order
zs4-nfs4mount-strtok
zs4-nfs4mount-strtok
zs5-multhr-hostcache"
>>
debian/patches/series
zs5-multhr-hostcache
zs5-add-missing-params.patch
zs6-krb-rc-param.patch
zs9-idmap-verbosity.patch"
>>
debian/patches/series
dch
--newversion
"1:1.3.4-6+zs
8
"
"Apply local patches"
dch
--newversion
"1:1.3.4-6+zs
9
"
"Apply local patches"
mk-build-deps
--install
--tool
=
'apt-get -o Debug::pkgProblemResolver=yes --yes'
debian/control
mk-build-deps
--install
--tool
=
'apt-get -o Debug::pkgProblemResolver=yes --yes'
debian/control
...
...
This diff is collapsed.
Click to expand it.
zs5-add-missing-params.patch
0 → 100644
+
15
−
0
View file @
0e7caa05
Index: nfs-utils-1.3.4/debian/nfs-utils_env.sh
===================================================================
--- nfs-utils-1.3.4.orig/debian/nfs-utils_env.sh
+++ nfs-utils-1.3.4/debian/nfs-utils_env.sh
@@ -25,7 +25,7 @@
echo SVCGSSDARGS=\"$RPCSVCGSSDOPTS\"
} > /run/sysconfig/nfs-utils
# the following are supported by the systemd units, but not exposed in default files
-# echo SMNOTIFYARGS=\"$SMNOTIFYARGS\"
-# echo RPCIDMAPDARGS=\"$RPCIDMAPDARGS\"
-# echo BLKMAPDARGS=\"$BLKMAPDARGS\"
+echo SMNOTIFYARGS=\"$SMNOTIFYARGS\"
+echo RPCIDMAPDARGS=\"$RPCIDMAPDARGS\"
+echo BLKMAPDARGS=\"$BLKMAPDARGS\"
# echo GSS_USE_PROXY=\"$GSS_USE_PROXY\"
This diff is collapsed.
Click to expand it.
zs6-krb-rc-param.patch
0 → 100644
+
9
−
0
View file @
0e7caa05
Index: nfs-utils-1.3.4/debian/nfs-utils_env.sh
===================================================================
--- nfs-utils-1.3.4.orig/debian/nfs-utils_env.sh
+++ nfs-utils-1.3.4/debian/nfs-utils_env.sh
@@ -29,3 +29,4 @@
echo SMNOTIFYARGS=\"$SMNOTIFYARGS\"
echo RPCIDMAPDARGS=\"$RPCIDMAPDARGS\"
echo BLKMAPDARGS=\"$BLKMAPDARGS\"
# echo GSS_USE_PROXY=\"$GSS_USE_PROXY\"
+echo KRB5RCACHEDIR=\"$KRB5RCACHEDIR\"
This diff is collapsed.
Click to expand it.
zs9-idmap-verbosity.patch
0 → 100644
+
33
−
0
View file @
0e7caa05
Index: nfs-utils-1.3.4/utils/nfsidmap/nfsidmap.c
===================================================================
--- nfs-utils-1.3.4.orig/utils/nfsidmap/nfsidmap.c
+++ nfs-utils-1.3.4/utils/nfsidmap/nfsidmap.c
@@ -418,13 +418,15 @@
int main(int argc, char **argv)
return EXIT_FAILURE;
}
+ if (!verbose)
+ verbose = conf_get_num("General", "Verbosity", 0);
+ if (verbose)
+ nfs4_set_debug(verbose, NULL);
+
if ((rc = nfs4_init_name_mapping(PATH_IDMAPDCONF))) {
xlog_errno(rc, "Unable to create name to user id mappings.");
return EXIT_FAILURE;
}
- if (!verbose)
- verbose = conf_get_num("General", "Verbosity", 0);
-
if (display)
return display_default_domain();
if (list)
@@ -444,9 +446,6 @@
int main(int argc, char **argv)
return EXIT_FAILURE;
}
- if (verbose)
- nfs4_set_debug(verbose, NULL);
-
key = strtol(argv[optind++], NULL, 10);
arg = strdup(argv[optind]);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment