Skip to content

Commit

Permalink
Fix lintian warning
Browse files Browse the repository at this point in the history
voms-server: chown-with-dot root.voms [usr/share/voms/voms_install_db:276]

chown-with-dot

  The named script uses a dot to separate owner and group in a call like
  chown user.group but that usage is deprecated.

  Please use a colon instead, as in:

  chown user:group.
  • Loading branch information
ellert committed Apr 30, 2024
1 parent 15c2607 commit 08cb63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install/voms_install_db.in
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ $ECHO $voms_password_query > $datapath/voms/$voms_vo/voms.pass

uid=`/usr/bin/id -u`

[ $uid = "0" ] && chown root.voms $datapath/voms/$voms_vo/voms.pass
[ $uid = "0" ] && chown root:voms $datapath/voms/$voms_vo/voms.pass
chmod 640 $datapath/voms/$voms_vo/voms.pass

if test -z $voms_vo ; then
Expand Down

0 comments on commit 08cb63e

Please sign in to comment.