6279b8f5a5 
					 
					
						
						
							
							docs: add manukal page for remote.cfg  
						
						
						
						
					 
					
						2021-02-11 11:25:15 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						67cc79ec52 
					 
					
						
						
							
							docs: add user.cfg.5 manual page  
						
						
						
						
					 
					
						2021-02-10 16:51:05 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4a0d3a3e3f 
					 
					
						
						
							
							docs: add datastore.cfg.5 man page  
						
						
						
						
					 
					
						2021-02-10 11:05:02 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						c19f5b85a3 
					 
					
						
						
							
							update debian/control  
						
						
						
						
					 
					
						2021-02-10 11:05:02 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b121711baa 
					 
					
						
						
							
							update debian/control  
						
						
						
						
					 
					
						2021-02-05 16:12:18 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4c209d6b10 
					 
					
						
						
							
							install pmt binary  
						
						
						
						
					 
					
						2021-02-05 12:42:20 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						8aa4842fa8 
					 
					
						
						
							
							bump version to 1.0.8-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-02-04 12:39:52 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						04cec92e8d 
					 
					
						
						
							
							update copyright years  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-02-03 12:04:27 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						64394b0de8 
					 
					
						
						
							
							bump version to 1.0.7-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-02-03 10:36:18 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						cafccb5991 
					 
					
						
						
							
							d/control: update  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-02-03 10:36:18 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						92b7775fa1 
					 
					
						
						
							
							fix debian/control  
						
						
						
						
					 
					
						2021-02-02 12:33:00 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						35c95ca653 
					 
					
						
						
							
							bump apt-pkg-native dependency  
						
						... 
						
						
						
						our patches got applied upstream, and a release was cut, so we no longer
need to depend on a manually patched version here.
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com > 
						
						
					 
					
						2021-02-01 11:53:25 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						dceecb0bbf 
					 
					
						
						
							
							debcargo: fix maintainer directive"  
						
						... 
						
						
						
						Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com > 
						
						
					 
					
						2021-02-01 11:21:21 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						a57ce270ac 
					 
					
						
						
							
							postinst: add user backup to group tape  
						
						... 
						
						
						
						So that it is possible to access tape and changer devcies. 
						
						
					 
					
						2021-01-30 11:48:49 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						c972704477 
					 
					
						
						
							
							install pmtx binary  
						
						
						
						
					 
					
						2021-01-27 11:36:15 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						545706cbee 
					 
					
						
						
							
							d/control: bump B-D on pve-eslint  
						
						... 
						
						
						
						the old one does not understand www/config/TfaView.js and fails the
build..
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com > 
						
						
					 
					
						2021-01-22 14:47:39 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						198ebc6c86 
					 
					
						
						
							
							d/rules: patch out wrongly linked libraries from ELFs  
						
						... 
						
						
						
						this is a HACK!
It seems that due to lots of binaries getting compiled from a single
crate the compiler is confused when linking in dependencies to each
binaries ELF.
It picks up the combined set (union) of all dependencies and sets
those to every ELF. This results in the client, for example, linking
to libapt-pkg or libsystemd even if none of that symbols are used..
This could be possibly fixed by restructuring the source tree into
sub crates/workspaces or what not, not really tested and *lots* of
work.
So as stop gap measure use `ldd -u` to find out unused linkage and
remove them using `patchelf`.
While this works well, and seems to not interfere with any debug
symbol usage or other usage in general it still is a hack and should
be dropped once the restructuring of the source tree has shown to
bring similar effects.
This allows for much easier re-use of the generated client .deb
package on other Debian derivaties (e.g., Ubuntu) which got blocked
until now due to wrong libt-apt verison or the like.
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-01-15 08:52:53 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						a8abcd9b30 
					 
					
						
						
							
							debian/control: set VCS urls  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-01-15 08:52:53 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b7469f5a9a 
					 
					
						
						
							
							d/control: sort and fix whitespace errors  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-01-15 08:52:53 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						427d90e6c1 
					 
					
						
						
							
							update to tokio 1.0  
						
						... 
						
						
						
						and various related crates
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com > 
						
						
					 
					
						2021-01-14 16:01:33 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						9b2e4079d0 
					 
					
						
						
							
							d/control: sort and fix whitespace errors  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2021-01-14 15:11:06 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						e96464c795 
					 
					
						
						
							
							d/control bump  
						
						... 
						
						
						
						Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com > 
						
						
					 
					
						2021-01-11 12:09:19 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						c5a767cd1d 
					 
					
						
						
							
							depend on libjs-qrcodejs  
						
						... 
						
						
						
						Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com > 
						
						
					 
					
						2021-01-11 10:22:32 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						df3a74d7e0 
					 
					
						
						
							
							debian: correctly install sg-tape-cmd setuid binary  
						
						
						
						
					 
					
						2020-12-28 13:22:17 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						02d484370f 
					 
					
						
						
							
							fix build depends  
						
						
						
						
					 
					
						2020-12-23 11:54:44 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						dbe7e556b0 
					 
					
						
						
							
							tape: implement binding for libsgutils2  
						
						... 
						
						
						
						So that we can read cartridge memory without calling "sg_raw". In future,
we may need further low level command to control the tape.. 
						
						
					 
					
						2020-12-23 09:44:53 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						2012825913 
					 
					
						
						
							
							depend on proxmox 0.9.0  
						
						
						
						
					 
					
						2020-12-22 08:52:24 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						1e20f819d5 
					 
					
						
						
							
							tape: add command to read cartridge memory (MAM)  
						
						... 
						
						
						
						Thsi add an additional dependency to sg3-utils (small). 
						
						
					 
					
						2020-12-21 12:12:33 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4a227b54bf 
					 
					
						
						
							
							add LTO barcode generator App  
						
						
						
						
					 
					
						2020-12-19 17:39:48 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						42150d263b 
					 
					
						
						
							
							update pxar dependency to 0.6.2  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-12-16 13:13:31 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						2d87f2fb73 
					 
					
						
						
							
							bump version to 1.0.6-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-12-11 14:19:28 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4c81273274 
					 
					
						
						
							
							debian: just install whole images directory  
						
						... 
						
						
						
						fixes build for recently added tape icon (and includes it for real)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-12-11 14:19:28 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						8bc5eebeb8 
					 
					
						
						
							
							depend on package mt-st  
						
						... 
						
						
						
						We do not use the mt utility directly, but the package also provides
an udev helper to correctly initialize tape drives (stinit). Also,
the mt utility is helpful for debugging tap issues. 
						
						
					 
					
						2020-12-11 06:38:45 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						1433b96ba0 
					 
					
						
						
							
							control.in: fix indentation  
						
						... 
						
						
						
						Signed-off-by: Oguz Bektas <o.bektas@proxmox.com > 
						
						
					 
					
						2020-12-11 06:31:30 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						eaff09f483 
					 
					
						
						
							
							update control file  
						
						
						
						
					 
					
						2020-12-09 11:21:56 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						956e5fec1f 
					 
					
						
						
							
							depend on mtx (tape changer control)  
						
						... 
						
						
						
						A very small package with no additional dependencies. 
						
						
					 
					
						2020-12-05 14:54:12 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						2241c6795f 
					 
					
						
						
							
							d/control bump  
						
						... 
						
						
						
						Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com > 
						
						
					 
					
						2020-11-30 14:28:02 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						96f35520a0 
					 
					
						
						
							
							bump version to 1.0.5-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-25 15:30:06 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						52f53d8280 
					 
					
						
						
							
							control: update versions  
						
						
						
						
					 
					
						2020-11-25 10:35:51 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						27b8a3f671 
					 
					
						
						
							
							bump version to 1.0.4-1  
						
						
						
						
					 
					
						2020-11-25 08:03:11 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						027eb2bbe6 
					 
					
						
						
							
							bump version to 1.0.3-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-24 08:56:18 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						866c859a1e 
					 
					
						
						
							
							bump version to 1.0.2-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-24 08:33:20 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						2133cd9103 
					 
					
						
						
							
							update debian/control  
						
						
						
						
					 
					
						2020-11-23 12:13:58 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						87367decf2 
					 
					
						
						
							
							ui: tell ESLint to be strict in check target  
						
						... 
						
						
						
						the .lint-incremental target, which is implicitly used by the install
target, is still more forgiving to allow faster "change, build, test"
iteration when developing.
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-12 09:54:39 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						f792220dd4 
					 
					
						
						
							
							d/control: update for new pin-project dependency  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-12 09:54:39 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						709c15abaa 
					 
					
						
						
							
							bump version to 1.0.1-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-11 10:21:30 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b404e4d930 
					 
					
						
						
							
							d/control: check in new dependnecies to generated control  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-11 10:21:30 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						71f82a98d7 
					 
					
						
						
							
							d/control: add missing dependencies for non ISO installations  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-11 07:26:05 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4ac529141f 
					 
					
						
						
							
							bump version to 1.0.0-1  
						
						... 
						
						
						
						Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com > 
						
						
					 
					
						2020-11-10 14:47:48 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						ff7a29104c 
					 
					
						
						
							
							postinst: fix version check for remote.cfg cleanup  
						
						... 
						
						
						
						Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com > 
						
						
					 
					
						2020-11-10 14:35:37 +01:00