search for: m755

Displaying 20 results from an estimated 20 matches for "m755".

Did you mean: 0755
1999 Nov 19
0
Request for change in ssh-askpass location after pre12
...)\" @@ -81,12 +81,11 @@ ln -sf ssh.1 $(mandir)/man1/slogin.1 if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \ - install -d $(libdir) ; \ - install -d $(libdir)/ssh ; \ + install -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ - install -m755 -c ssh-askpass $(libdir)/ssh/ssh-askpass; \ + install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ else \ - install -m755 -c gnome-ssh-askpass $(libdir)/ssh/ssh-askpass; \ + install -m755 -c gnome-ssh-askpass ${ASKPASS_PROGRAM}; \ fi ; \ fi
2011 May 17
2
securing sshd with selinux
Hello List, dont have experience with selinux, but i want to know if it would be a practicable way to secure sshd with selinux. i have some webservers and want to grant ssh-access to some users. my plan ist to make new server where users are able to log in. the homes from webserver are mounted in by nfs etc. i dont like chroot-env for ssh, a lot of disadvantages... also i dont like if users
1999 Nov 23
0
[PATCH] Adding BSD compatible install script to 1.2pre14.
...mandir)/man1/slogin.1 if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \ - install -d $(libexecdir) ; \ - install -d $(libexecdir)/ssh ; \ + $(INSTALL) -d $(libexecdir) ; \ + $(INSTALL) -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ - install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ + $(INSTALL) -m755 ssh-askpass ${ASKPASS_PROGRAM}; \ else \ - install -m755 -c gnome-ssh-askpass ${ASKPASS_PROGRAM}; \ + $(INSTALL) -m755 gnome-ssh-askpass ${ASKPASS_PROGRAM}; \ fi ; \ fi if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)...
2003 Jan 28
2
rsync-2.5.6 build on Red Hat 8.0 fails
...e --prefix=/usr --mandir=/usr/share/man +./configure --prefix=/usr --mandir=%{_mandir} make CFLAGS="$RPM_OPT_FLAGS" strip rsync %install -mkdir -p $RPM_BUILD_ROOT/usr/{bin,share/man/{man1,man5}} +mkdir -p $RPM_BUILD_ROOT/usr/bin +mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man{1,5} install -m755 rsync $RPM_BUILD_ROOT/usr/bin -install -m644 rsync.1 $RPM_BUILD_ROOT/usr/share/man/man1 -install -m644 rsyncd.conf.5 $RPM_BUILD_ROOT/usr/share/man/man5 +install -m644 rsync.1 $RPM_BUILD_ROOT%{_mandir}/man1 +install -m644 rsyncd.conf.5 $RPM_BUILD_ROOT%{_mandir}/man5 %clean rm -rf $RPM_BUILD_ROOT...
2001 Feb 21
0
bug?: building RPM of 2.5.1p1 uses wrong pam.d/ssh file for RH6 vs RH7
...190,198 **** install -d $RPM_BUILD_ROOT/etc/rc.d/init.d install -d $RPM_BUILD_ROOT%{_libexecdir}/openssh %if %{redhat7} - install -m644 contrib/redhat/sshd.pam $RPM_BUILD_ROOT/etc/pam.d/sshd - %else install -m644 contrib/redhat/sshd.pam-7.x $RPM_BUILD_ROOT/etc/pam.d/sshd %endif install -m755 contrib/redhat/sshd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/sshd --- 190,198 ---- install -d $RPM_BUILD_ROOT/etc/rc.d/init.d install -d $RPM_BUILD_ROOT%{_libexecdir}/openssh %if %{redhat7} install -m644 contrib/redhat/sshd.pam-7.x $RPM_BUILD_ROOT/etc/pam.d/sshd + %else + install -m644 contr...
2005 Oct 06
7
Patch: FC4 spec file
...client ; gcc -lmcheck -o mount.cifs $RPM_OPT_FLAGS -Wall -O -D_GNU_SOURCE -D_LARGEFILE64_SOURCE mount.cifs.c ) %install rm -rf $RPM_BUILD_ROOT @@ -153,6 +154,7 @@ install -m644 %{SOURCE7} $RPM_BUILD_ROOT/etc/pam.d/samba install -m644 %{SOURCE1} $RPM_BUILD_ROOT/etc/logrotate.d/samba install -m755 source/script/mksmbpasswd.sh $RPM_BUILD_ROOT%{_bindir} +install -m755 source/client/mount.cifs $RPM_BUILD_ROOT/sbin/mount.cifs install -m755 %{SOURCE5} $RPM_BUILD_ROOT%{initdir}/smb install -m755 %{SOURCE6} $RPM_BUILD_ROOT%{initdir}/winbind @@ -204,7 +206,6 @@ rm -f $RPM_BUILD_ROOT%{_mandir}/m...
1999 Nov 22
1
[PATCH] A couple of small fixes for 1.2pre14.
...ysconfdir@ @@ -83,7 +82,7 @@ ln -sf ssh.1 $(mandir)/man1/slogin.1 if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \ - install -d $(libdir) ; \ + install -d $(libexecdir) ; \ install -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ -- Niels Kristian Bech Jensen -- nkbj at image.dk -- http://www.image.dk/~nkbj/ ----------->> Stop software piracy --- use free software! <<-----------
2009 Jan 13
0
[btrfs-progs 3/4] Add man/btrfsck.8.in and Makefile for man pages
...gz: mkfs.btrfs.8.in + $(GZIP) -n -c mkfs.btrfs.8.in > mkfs.btrfs.8.gz + +btrfsctl.8.gz: btrfsctl.8.in + $(GZIP) -n -c btrfsctl.8.in > btrfsctl.8.gz + +btrfsck.8.gz: btrfsck.8.in + $(GZIP) -n -c btrfsck.8.in > btrfsck.8.gz + +clean : + rm -f $(MANPAGES) + +install: $(MANPAGES) + $(INSTALL) -m755 -d $(DESTDIR)$(man8dir) + $(INSTALL) -m 644 $(MANPAGES) $(DESTDIR)$(man8dir) diff --git a/man/btrfsck.8.in b/man/btrfsck.8.in new file mode 100644 index 0000000..63a0039 --- /dev/null +++ b/man/btrfsck.8.in @@ -0,0 +1,17 @@ +.TH BTRFSCK 8 +.SH NAME +btrfsck \- check a btrfs filesystem +.SH SYNOPSI...
2013 Jan 26
1
[RFC] Add static build target, try two - using git send-email
And this adds the static compile target... *phew* -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
2002 Mar 14
1
rsync 2.5.4 released
A new version of rsync has been released: rsync 2.5.4 (13 March 2002) "Imitation lizard skin" BUG FIXES: * Additional fix for zlib double-free bug. (Martin Pool, Andrew Tridgell) (CVE CAN-2002-0059) ENHANCEMENTS: * Merge in changes from zlib 1.1.3 to zlib 1.1.4. (Jos Backus) (Note that rsync still uses a custom version of zlib; you can not just
2002 Mar 14
1
rsync 2.5.4 released
A new version of rsync has been released: rsync 2.5.4 (13 March 2002) "Imitation lizard skin" BUG FIXES: * Additional fix for zlib double-free bug. (Martin Pool, Andrew Tridgell) (CVE CAN-2002-0059) ENHANCEMENTS: * Merge in changes from zlib 1.1.3 to zlib 1.1.4. (Jos Backus) (Note that rsync still uses a custom version of zlib; you can not just
2014 Jan 03
1
Need help with spec file for Apache-2.4.7
.../httpd $RPM_BUILD_ROOT/etc/httpd/logs ln -s ../..%{_localstatedir}/run $RPM_BUILD_ROOT/etc/httpd/run ln -s ../..%{_libdir}/httpd/modules $RPM_BUILD_ROOT/etc/httpd/modules mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d # install SYSV init stuff mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d install -m755 ./build/rpm/httpd.init \ $RPM_BUILD_ROOT/etc/rc.d/init.d/httpd install -m755 ./build/rpm/htcacheclean.init \ $RPM_BUILD_ROOT/etc/rc.d/init.d/htcacheclean # install log rotation stuff mkdir -p $RPM_BUILD_ROOT/etc/logrotate.d install -m644 ./build/rpm/httpd.logrotate \ $RPM_BUILD_ROOT/etc/...
2001 Nov 30
1
rsync 2.5.0 released
I am happy to announce a new stable release of rsync-2.5.0. This supersedes 2.4.6 and 2.4.7pre4. In particular, this release is supposed to fix the hang bug experienced by many people when using the -v option. rsync 2.5.0 also adds support for IPv6, and works on more platforms. Other enhancements are listed in the NEWS file below. Please report success or failure in building or using
2001 Nov 30
1
rsync 2.5.0 released
I am happy to announce a new stable release of rsync-2.5.0. This supersedes 2.4.6 and 2.4.7pre4. In particular, this release is supposed to fix the hang bug experienced by many people when using the -v option. rsync 2.5.0 also adds support for IPv6, and works on more platforms. Other enhancements are listed in the NEWS file below. Please report success or failure in building or using
1999 Nov 23
2
Fixes for Solaris
...ysconfdir@ @@ -83,7 +82,7 @@ ln -sf ssh.1 $(mandir)/man1/slogin.1 if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \ - install -d $(libdir) ; \ + install -d $(libexecdir) ; \ install -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ Index: README =================================================================== RCS file: /var/cvs/openssh/README,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- README 1999/11/22 04:24:35 1.25 +++ README 1999/11/22 23:11:29 1.26...
2001 Feb 18
3
PATCH: Round 2: RH initscripts backward compatibility
.../Daemons Obsoletes: ssh-server PreReq: openssh = %{version}-%{release}, chkconfig >= 0.9 -Requires: initscripts >= 4.16 %package askpass Summary: OpenSSH X11 passphrase dialog @@ -195,6 +194,7 @@ install -m644 contrib/redhat/sshd.pam-7.x $RPM_BUILD_ROOT/etc/pam.d/sshd %endif install -m755 contrib/redhat/sshd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/sshd +install -m644 contrib/redhat/sshd-functions $RPM_BUILD_ROOT/etc/rc.d/init.d/sshd-functions %if ! %{no_x11_askpass} install -s x11-ssh-askpass-%{aversion}/x11-ssh-askpass $RPM_BUILD_ROOT/usr/libexec/openssh/x11-ssh-askpass @@ -261,6...
2000 Sep 03
1
installing OpenSSH rpm on SuSE 6.2
...ome gnomeui` cd .. %endif %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT/ install -d $RPM_BUILD_ROOT/etc/pam.d/ install -d $RPM_BUILD_ROOT/etc/rc.d/init.d install -d $RPM_BUILD_ROOT/usr/libexec/ssh install -m644 contrib/redhat/sshd.pam $RPM_BUILD_ROOT/etc/pam.d/sshd install -m755 contrib/redhat/sshd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/sshd %if ! %{no_x11_askpass} install -s x11-ssh-askpass-%{aversion}/x11-ssh-askpass $RPM_BUILD_ROOT/usr/libexec/ssh/x11-ssh-askpass ln -s /usr/libexec/ssh/x11-ssh-askpass $RPM_BUILD_ROOT/usr/libexec/ssh/ssh-askpass %endif %if ! %{no_gnome_a...
2001 Oct 07
3
Using -lssh as shared library
...-C openbsd-compat CC="gcc -fPIC" gcc -shared -Wl,-soname,libssh-%{version}.so -o libssh.so \ -Wl,--whole-archive libssh.a openbsd-compat/libopenbsd-compat.a \ -Wl,--no-whole-archive -lcrypto -lz make SSH_LIBS=libssh.so SSH_LDFLAGS=-lssh -- and, at install stage, additional -- install -m755 libssh.so $RPM_BUILD_ROOT%{_libdir}/libssh-%{version}.so -- line is needed too, after real `make install'. Adding real shared lib suport into makefile(s) will require to create separate directory for libssh, or to use some other extension instead of .o for all it's components, due to dif...
2012 Mar 25
2
build postfix rpm with mysql
..._directory=%{readme_dir} || exit 1 # To be compatible with later versions of RH sendmail/postfix packages # make /usr/lib/sendmail.postfix point to /usr/sbin/sendmail.postfix. # The alternatives then point /usr/lib/sendmail to /usr/lib/sendmail.postfix. # This *is* all a bit silly ... install -d -m755 $RPM_BUILD_ROOT/usr/lib ln -sf ../sbin/sendmail.postfix $RPM_BUILD_ROOT%{usrlib_sendmail} # RPM compresses man pages automatically. Edit postfix-files to avoid # confusing post-install. ed ${RPM_BUILD_ROOT}%{_libexecdir}/postfix/postfix-files <<EOF || exit 1 H ,s/\(\/man[158]\/.*\.[158]\):/...
2011 Nov 19
4
build postfix spec w/ mysql
..._directory=%{readme_dir} || exit 1 # To be compatible with later versions of RH sendmail/postfix packages # make /usr/lib/sendmail.postfix point to /usr/sbin/sendmail.postfix. # The alternatives then point /usr/lib/sendmail to /usr/lib/sendmail.postfix. # This *is* all a bit silly ... install -d -m755 $RPM_BUILD_ROOT/usr/lib ln -sf ../sbin/sendmail.postfix $RPM_BUILD_ROOT%{usrlib_sendmail} # RPM compresses man pages automatically. Edit postfix-files to avoid # confusing post-install. ed ${RPM_BUILD_ROOT}%{_libexecdir}/postfix/postfix-files <<EOF || exit 1 H ,s/\(\/man[158]\/.*\.[158]\):/...