/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: teddy at bsnet
  • Date: 2010-08-16 19:00:59 UTC
  • mto: This revision was merged to the branch mainline in revision 420.
  • Revision ID: teddy@fukt.bsnet.se-20100816190059-69vvi27up95cgbbl
* Makefile (run-server, run-client): Add notices about harmless error
                                     messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
 
208
208
# Run the client with a local config and key
209
209
run-client: all keydir/seckey.txt keydir/pubkey.txt
 
210
        @echo "###################################################################"
 
211
        @echo "# The following error messages are harmless and can be safely     #"
 
212
        @echo "# ignored.  The messages are caused by not running as root, but   #"
 
213
        @echo "# you should NOT run \"make run-client\" as root unless you also    #"
 
214
        @echo "# unpacked and compiled Mandos as root, which is NOT recommended. #"
 
215
        @echo "# From plugin-runner: setuid: Operation not permitted             #"
 
216
        @echo "# From askpass-fifo:  mkfifo: Permission denied                   #"
 
217
        @echo "# From mandos-client: setuid: Operation not permitted             #"
 
218
        @echo "#                     seteuid: Operation not permitted            #"
 
219
        @echo "#                     klogctl: Operation not permitted            #"
 
220
        @echo "###################################################################"
210
221
        ./plugin-runner --plugin-dir=plugins.d \
211
222
                --config-file=plugin-runner.conf \
212
223
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
219
230
 
220
231
# Run the server with a local config
221
232
run-server: confdir/mandos.conf confdir/clients.conf
 
233
        @echo "#################################################################"
 
234
        @echo "# NOTE: Please IGNORE errors about \"No permission to bind to    #"
 
235
        @echo "# interface\" or \"Could not open file u'/var/run/mandos.pid'\" -  #"
 
236
        @echo "# they are harmless and are caused by the server not running as #"
 
237
        @echo "# root.  Do NOT run \"make run-server\" server as root if you did #"
 
238
        @echo "# not also unpack and compile it as root.                       #"
 
239
        @echo "#################################################################"
222
240
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
223
241
 
224
242
# Used by run-server