[00:16] anyone know why building a package is giving me this error [00:17] https://p.bsd-unix.net/view/1bf9a20e [00:24] phibs: my wild guess is things that package was built to do may have passed the lintian tests that were in place when it was created, but new tests have been added since then [00:33] hmm it won't even isntall [00:33] https://p.bsd-unix.net/view/b1b20719 [00:37] waaaat [00:37] not even sure where it gets that from.... [00:39] any tips would be gr8 [00:40] oic [00:40] looks like it's in the Makefile.... [00:41] so what is the proper dir to use i guess [00:41] $(INSTALL) -m 644 etc/conman.service \ [00:41] $(DESTDIR)$(prefix)/lib/systemd/system/conman.service; \ [00:42] maybe /etc/systemd/system [00:43] that's more for local admins [00:43] $ ls -l /usr/lib/systemd/system/ | wc -l [00:43] 390 [00:44] phibs: hmm, I wonder if it's that stupid /lib symlink.. check out namei -l /lib/systemd/system [00:45] so it wants /usr/lib ? [00:46] I found it slightly funny that the lintian output had both /lib/systemd/ and /usr/lib/systemd/ paths.. [00:46] heh [00:46] le sigh [00:46] afaik this is just the focal conman pkg [00:46] w/ newer sources (for 0.3.0) [00:47] amazing deb/ubuntu haven't packaged newer [00:47] how should i try to fix [00:48] looks like it's already trying to use /usr/lib/systemd [00:48] $(INSTALL) -m 644 etc/conman.service \ [00:48] $(DESTDIR)$(prefix)/lib/systemd/system/conman.service; \ [00:49] but yeah I dun care about linter, I just want it to install ;0 [00:53] https://github.com/dun/conman/blame/6d1057ce17ec1404e84c5b4e0d5f5c7fa9a22c23/Makefile.am#L227 [00:53] that bit of the makefile is newer than the newest package in ubuntu [00:53] I'd be tempted to patch that bit out :) [00:53] of course [00:53] ubuntu/deb are old here [00:53] which bit [00:54] maybe the right answer is to edit the debian/conman.install.in file in package and remove the /lib/ .. version of the thing [00:54] tried that [00:54] dang [00:55] this has 1990s written all over it ;0 [00:55] I don't miss doing this stuff for a living [00:55] try deleting those four lines from install-systemd from the Makefile, and remove the 'install-systemd' from the install-data-local: line? [00:55] :) [00:57] woo [00:57] that was it [00:58] (removing $prefix) [00:58] it wanted /lib [00:59] fun times thanks sir [00:59] woot :) [01:03] I thought you hung in ##ubnt [01:04] this is the first I"m hearing of it, thanks :) [01:35] :) === vlm_ is now known as vlm [13:41] Hi guys, I want to put a command to ubuntu and when system startup and rebooting it should run, in centos we have /etc/rc.local [13:42] what does we have in ubutnu ? [13:42] should I put it in .bashrc? [13:47] the modern mechanism would be to write a systemd unit, you can also restore the /etc/rc.local functionality via systemd https://www.linuxbabe.com/linux-server/how-to-enable-etcrc-local-with-systemd [13:47] .bashrc is going to run on login, not startup, so you probably don't want to go that route [14:02] Poster, it is just a command that should run on start up like bellow: echo 0 > /sys/block/sda/queue/add_random