|
@@ -15,7 +15,25 @@
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
-
|
|
|
+echo "If now you see something like 'command not found' -- its OK."
|
|
|
+echo "The main thing is to get help from con after installing."
|
|
|
+
|
|
|
+# Identify correct init system.
|
|
|
+#
|
|
|
+{
|
|
|
+ systemctl status > /dev/null
|
|
|
+} && {
|
|
|
+ sed -i -e 's/^.*#.*SystemD.*--- /\t/' ./con
|
|
|
+} || {
|
|
|
+ {
|
|
|
+ rc-status > /dev/null && sed -i -e 's/^.*#.*OpenRc.*--- /\t/' ./con
|
|
|
+ } || {
|
|
|
+ sed -i -e 's/^.*#.*Sysvinit.*--- /\t/' ./con
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+# Copy program to system location.
|
|
|
+#
|
|
|
sudo cp ./con /usr/bin
|
|
|
con --help
|
|
|
|