Skip to content
  1. Jul 30, 2013
  2. Jul 26, 2013
    • Riku Voipio's avatar
      apache2: move pidfile to run · 16fad8e6
      Riku Voipio authored
      pidile was stored in /var/apache2/log which is saved over boots.
      This might prevent startup of apache2 on boots. Move it to /run
      where pidfiles in general belong.
      16fad8e6
  3. Jul 24, 2013
  4. Jul 20, 2013
  5. Jul 19, 2013
    • Roy.Li's avatar
      Upgrade vsftpd to 3.0.0 · 441502b6
      Roy.Li authored
      
      
      Upgrade vsftpd to 3.0.0 with below modification:
      1. more strict access limitation, like: do not allow anonymous access
      2. use vsftpd.ftpusers and vsftpd.user_list to confine user access
      3. enable pam if DISTRO_FEATURE includes pam
      4. enable tcp-wrapper
      5. install vsftpd.conf with 0600 permission, not 0755
      
      Signed-off-by: default avatarRoy.Li <rongqing.li@windriver.com>
      Signed-off-by: default avatarJoe MacDonald <joe.macdonald@windriver.com>
      441502b6
    • Roy.Li's avatar
      cyrus-sasl: several fixes · fe85f498
      Roy.Li authored
      
      
      1. Fix hardcoded libdir
      2. configure cyrus-sasl based on PACKAGECONFIG
      3. create user by inherit useradd
      4. add -fPIC to CFLAG to fix the below building failure:
              ld: ../sasldb/.libs/libsasldb.a(db_berkeley.o): relocation R_X86_64_32S against
              `.rodata' can not be used when making a shared object; recompile with -fPIC
              ../sasldb/.libs/libsasldb.a(db_berkeley.o): could not read symbols: Bad value
         The cause is that libsasldb.a is built twice since {.c.o: and .c.lo} co-exist, one
         with -fPIC, other without -fPIC. if no -fPIC library follows behind, this error
         will appear. so we enable -fPIC no matter whatever objects are built.
      5. The version of db in oe-core is 5.0
      
      Signed-off-by: default avatarRoy.Li <rongqing.li@windriver.com>
      Signed-off-by: default avatarJoe MacDonald <joe.macdonald@windriver.com>
      fe85f498