5 lines
74 B
Bash
5 lines
74 B
Bash
|
#!/bin/bash
|
||
|
if pkg-config libselinux 2> /dev/null ; then
|
||
|
echo selinux
|
||
|
fi
|