07:43:55 I changed my shell in passwd but it doesn' t seem o do anyrthing 08:25:32 Did you re-login? 11:52:29 hello everyone - i am in the process of upgrading servers to 14.1 from 14.0 and a few machines worked but one in particular is giving me merge conflictgs in /etc/mtree files.. to resolve them i have to do a manual merge but was curious if anyone else was experiencing this issue? 11:56:43 https://1drv.ms/i/s!Ag86nuiRCza3jcUYHaaoFbzhVSuqhA?e=6SZrw7 12:08:55 voy4g3r2: Yes, this shows that 14.1 adds the line that says __math. It's not present in your current version. 12:09:29 voy4g3r2: Not sure why that didn't happen on your other systems 12:28:21 vkarlsen: it applied the merge fine on other systems which is the weird part 12:28:34 i would execpt a consistent merge conflict but for one system this did not occur.. 15:30:56 is possible to run multiple commands in jail like jexec cd /var/www/... && composer install ? when I try it does not do what ži want. it tries to run composer in host env 15:31:52 That's because the && is interpreted by your host shell, not by jexec 15:32:21 probably need jexec /bin/sh -c 'the whole command' or whatever 15:32:36 Exactly 15:33:13 ... does FreeBSD's sh support the -c argument? I know that su doesn't, it requires a different way of passing commands to it 15:33:41 ohhh thank you! it works! 15:33:50 And yeah, it does support -c 19:47:03 I am trying to diff files in two different directories with: find ./ -type f -name '*.php' -exec diff {} ../gtech/{} \; 19:47:37 but somehow it flattens the path so if the file is found in ./dir1/file1.php it tries to diff it again ../gtech/file1.php instead of ../gtech/dir1/file1.php 19:47:48 is there a way to preserve the path ? 19:52:20 it's weird because exec ls -la {} \; prints the full path 23:17:42 last1: diff -r doesn't work for you?