Advertisement
KOT040188

Xorg

Mar 19th, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # Execute Xorg.wrap if it exists otherwise execute Xorg directly.
  4. # This allows distros to put the suid wrapper in a separate package.
  5.  
  6. basedir=/usr/bin
  7. if [ -x "$basedir"/Xorg.wrap ]; then
  8. exec "$basedir"/Xorg.wrap "$@"
  9. else
  10. exec "$basedir"/Xorg.bin "$@"
  11. fi
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement