Skip to content
Snippets Groups Projects
Select Git revision
  • 569c17b494061b6a9ec2c1792320ede388e9adde
  • master default protected
  • 9.0
  • 8.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
  • v8.0.1968
  • v8.0.1966
41 results

program.c

Blame
    • Fredrik Hübinette (Hubbe)'s avatar
      9649497b
      lots of changes · 9649497b
      Fredrik Hübinette (Hubbe) authored
      Rev: src/acconfig.h:1.16
      Rev: src/array.c:1.30
      Rev: src/array.h:1.11
      Rev: src/builtin_functions.c:1.74
      Rev: src/compilation.h:1.7
      Rev: src/configure.in:1.160
      Rev: src/dynamic_load.c:1.24
      Rev: src/interpret.c:1.69
      Rev: src/interpret.h:1.19
      Rev: src/language.yacc:1.61
      Rev: src/las.c:1.53
      Rev: src/main.c:1.42
      Rev: src/modules/Makefile.in:1.15
      Rev: src/modules/dynamic_module_makefile.in:1.31
      Rev: src/modules/spider/dumudp.c:1.34
      Rev: src/modules/static_module_makefile.in:1.25
      Rev: src/modules/system/system.c:1.42
      Rev: src/program.c:1.64
      Rev: src/program.h:1.33
      9649497b
      History
      lots of changes
      Fredrik Hübinette (Hubbe) authored
      Rev: src/acconfig.h:1.16
      Rev: src/array.c:1.30
      Rev: src/array.h:1.11
      Rev: src/builtin_functions.c:1.74
      Rev: src/compilation.h:1.7
      Rev: src/configure.in:1.160
      Rev: src/dynamic_load.c:1.24
      Rev: src/interpret.c:1.69
      Rev: src/interpret.h:1.19
      Rev: src/language.yacc:1.61
      Rev: src/las.c:1.53
      Rev: src/main.c:1.42
      Rev: src/modules/Makefile.in:1.15
      Rev: src/modules/dynamic_module_makefile.in:1.31
      Rev: src/modules/spider/dumudp.c:1.34
      Rev: src/modules/static_module_makefile.in:1.25
      Rev: src/modules/system/system.c:1.42
      Rev: src/program.c:1.64
      Rev: src/program.h:1.33
    sshd_config-Debian 1.61 KiB
    # Managed by puppet
    
    # What ports, IPs and protocols we listen for
    Port 22
    # Use these options to restrict which interfaces/protocols sshd will bind to
    #ListenAddress ::
    #ListenAddress 0.0.0.0
    Protocol 2
    # HostKeys for protocol version 2
    HostKey /etc/ssh/ssh_host_rsa_key
    HostKey /etc/ssh/ssh_host_ecdsa_key
    #Privilege Separation is turned on for security
    UsePrivilegeSeparation yes
    
    # Logging
    SyslogFacility AUTH
    LogLevel INFO
    
    # Authentication:
    LoginGraceTime 120
    PermitRootLogin yes
    StrictModes yes
    
    PubkeyAuthentication yes
    #AuthorizedKeysFile	%h/.ssh/authorized_keys
    
    # Don't read the user's ~/.rhosts and ~/.shosts files
    IgnoreRhosts yes
    # similar for protocol version 2
    HostbasedAuthentication no
    # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
    #IgnoreUserKnownHosts yes
    
    # To enable empty passwords, change to yes (NOT RECOMMENDED)
    PermitEmptyPasswords no
    
    # Change to yes to enable challenge-response passwords (beware issues with
    # some PAM modules and threads)
    ChallengeResponseAuthentication no
    
    # Change to no to disable tunnelled clear text passwords
    #PasswordAuthentication yes
    
    # Kerberos options
    #KerberosAuthentication no
    #KerberosGetAFSToken no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes
    
    # GSSAPI options
    GSSAPIAuthentication yes
    GSSAPICleanupCredentials yes
    GSSAPIKeyExchange yes
    GSSAPIStoreCredentialsOnRekey yes
    
    X11Forwarding yes
    X11DisplayOffset 10
    #PrintMotd yes
    PrintLastLog yes
    TCPKeepAlive yes
    #UseLogin no
    
    #MaxStartups 10:30:60
    #Banner /etc/issue.net
    
    # Allow client to pass locale environment variables
    AcceptEnv LANG LC_*
    
    Subsystem sftp /usr/lib/openssh/sftp-server
    
    UsePAM yes